diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-26 12:45:53 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-26 12:45:53 +0000 |
| commit | c94fd664bba352732bf0e5c9a77e709b49f1aa4f (patch) | |
| tree | 70936acfc33b46792ce1e3170de6a82f86edfe68 /include/teleport.h | |
| parent | a1e9bc7430ca827808a502f455b20a23ba15e31a (diff) | |
- mensie upravy v kode
- navod na zostavovanie projektu
- da sa to skompilovat :D
- PS: este to nie je odladene, a musim sa ucit na prijmacky na FEI
git-svn-id: http://opensvn.csie.org/tuxanci_ng@54 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'include/teleport.h')
| -rw-r--r-- | include/teleport.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/include/teleport.h b/include/teleport.h deleted file mode 100644 index 1101a57..0000000 --- a/include/teleport.h +++ /dev/null @@ -1,45 +0,0 @@ - -#ifndef TELEPORT_H - -#define TELEPORT_H - -#ifndef PUBLIC_SERVER -#include "interface.h" -#endif -#include "main.h" -#include "list.h" - -typedef struct teleport_struct -{ - int x; // poloha steny - int y; - - int w; // rozmery steny - int h; - - int layer; // vrstva - -#ifndef PUBLIC_SERVER - SDL_Surface *img; //obrazok -#endif -} teleport_t; - -#ifndef PUBLIC_SERVER -extern teleport_t* newTeleport(int x, int y, int w, int h, int layer, SDL_Surface *img); -#endif - -#ifdef PUBLIC_SERVER -extern teleport_t* newTeleport(int x, int y, int w, int h, int layer); -#endif - -#ifndef PUBLIC_SERVER -extern void drawTeleport(teleport_t *p); -extern void drawListTeleport(list_t *listTeleport); -#endif -extern teleport_t* isConflictWithListTeleport(list_t *listTeleport, int x, int y, int w, int h); -extern void eventConflictShotWithTeleport(list_t *listTeleport, list_t *listShot); -extern void eventTeleportTux(list_t *listTeleport, teleport_t *teleport, tux_t *tux); -extern void destroyTeleport(teleport_t *p); - -#endif - |