diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-16 17:38:13 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-16 17:38:13 +0000 |
| commit | 13d754c917ebcf1be913bd35f4c0e44468edeb52 (patch) | |
| tree | be93c38ccf0f17015348b5159025c3603ce0f271 /include | |
| parent | 932b71bf3e486fc38002bbcfba606085e48b6434 (diff) | |
- oprava problemu s pozostatkom sdl v publicserveri
git-svn-id: http://opensvn.csie.org/tuxanci_ng@22 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'include')
| -rw-r--r-- | include/arena.h | 2 | ||||
| -rw-r--r-- | include/item.h | 2 | ||||
| -rw-r--r-- | include/pipe.h | 2 | ||||
| -rw-r--r-- | include/shot.h | 2 | ||||
| -rw-r--r-- | include/teleport.h | 3 | ||||
| -rw-r--r-- | include/wall.h | 3 |
6 files changed, 13 insertions, 1 deletions
diff --git a/include/arena.h b/include/arena.h index 8ac353d..c5f34b4 100644 --- a/include/arena.h +++ b/include/arena.h @@ -4,7 +4,9 @@ #define ARENA_H #include "main.h" +#ifndef BUBLIC_SERVER #include "interface.h" +#endif #include "list.h" typedef struct arena_struct diff --git a/include/item.h b/include/item.h index fd66839..fdc6cd5 100644 --- a/include/item.h +++ b/include/item.h @@ -4,7 +4,9 @@ #define ITEM_H #include "main.h" +#ifndef BUBLIC_SERVER #include "interface.h" +#endif #include "list.h" #include "tux.h" diff --git a/include/pipe.h b/include/pipe.h index 7f38fb8..867dcc8 100644 --- a/include/pipe.h +++ b/include/pipe.h @@ -4,7 +4,9 @@ #define PIPE_H #include "main.h" +#ifndef BUBLIC_SERVER #include "interface.h" +#endif #include "list.h" typedef struct pipe_struct diff --git a/include/shot.h b/include/shot.h index 3bd0142..22fb2f5 100644 --- a/include/shot.h +++ b/include/shot.h @@ -2,7 +2,9 @@ #ifndef SHOT_H #include "main.h" +#ifndef BUBLIC_SERVER #include "interface.h" +#endif #include "list.h" #include "tux.h" diff --git a/include/teleport.h b/include/teleport.h index 7eba1ce..fc039c0 100644 --- a/include/teleport.h +++ b/include/teleport.h @@ -3,10 +3,11 @@ #define TELEPORT_H +#ifndef BUBLIC_SERVER #include "interface.h" +#endif #include "main.h" #include "list.h" -#include "interface.h" typedef struct teleport_struct { diff --git a/include/wall.h b/include/wall.h index e22bf34..c9b74f0 100644 --- a/include/wall.h +++ b/include/wall.h @@ -3,7 +3,10 @@ #define WALL_H +#ifndef BUBLIC_SERVER #include "interface.h" +#endif + #include "list.h" typedef struct wall_struct |