summaryrefslogtreecommitdiff
path: root/include/tux.h
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-02-10 19:18:51 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-02-10 19:18:51 +0000
commitd783595135ca768ae14f08aa4033dea35ed0458b (patch)
treeb653d2b0bc34e6d903902d19a6c3b2f1d1ead176 /include/tux.h
parentec218f423abf60b6e776d7a5a9ebee408de45a60 (diff)
- dopisane objekty do prvej areny
- opravy zvuku ( ak sa neinicalizuje, program sa sprava ako keby sa inicalizoval ) - opravy v sietovom multiplayeri - porgram ma parametre ( zatial nezdokumentovane, je to iba vidiet zo zdrojaka ) git-svn-id: http://opensvn.csie.org/tuxanci_ng@4 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'include/tux.h')
-rw-r--r--include/tux.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/tux.h b/include/tux.h
index 068ed63..e73f934 100644
--- a/include/tux.h
+++ b/include/tux.h
@@ -102,7 +102,7 @@ extern void initTux();
extern tux_t* newTux();
extern bool_t isTuxAnyGun(tux_t *tux);
extern void getCourse(int n, int *x, int *y);
-extern void drawTux(tux_t *p);
+extern void drawTux(tux_t *tux);
extern void drawListTux(list_t *listTux);
extern void eventTuxIsDead(tux_t *tux);
extern tux_t* isConflictWithListTux(list_t *listTux, int x, int y, int w, int h);
@@ -112,8 +112,9 @@ extern void tuxTeleport(tux_t *tux);
extern void actionTux(tux_t *tux, int action);
extern void eventListTux(list_t *listTux);
extern tux_t* getTuxID(list_t *listTux, int id);
-extern void getTuxProportion(tux_t *p, int *x,int *y, int *w, int *h);
-extern void destroyTux(tux_t *p);
+extern void getTuxProportion(tux_t *tux, int *x,int *y, int *w, int *h);
+extern void setTuxProportion(tux_t *tux, int x, int y);
+extern void destroyTux(tux_t *tux);
extern void quitTux();
#endif