diff options
author | Treeki <treeki@gmail.com> | 2012-11-24 04:51:54 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-11-24 04:51:54 +0100 |
commit | e37a44245428c5809de867f20c6473c71c05b154 (patch) | |
tree | 9294c5ca026109a5dacdf772fd3ea5c23c4c2248 /src/koopatlas/subplayer.h | |
parent | 29866fe6126d185f75002c3fd3c5f9214e72ddeb (diff) | |
download | kamek-e37a44245428c5809de867f20c6473c71c05b154.tar.gz kamek-e37a44245428c5809de867f20c6473c71c05b154.zip |
removed 4P on map
Diffstat (limited to 'src/koopatlas/subplayer.h')
-rw-r--r-- | src/koopatlas/subplayer.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/koopatlas/subplayer.h b/src/koopatlas/subplayer.h deleted file mode 100644 index d9b1b20..0000000 --- a/src/koopatlas/subplayer.h +++ /dev/null @@ -1,38 +0,0 @@ -#ifndef __KOOPATLAS_SUBPLAYER_H -#define __KOOPATLAS_SUBPLAYER_H - -#include "koopatlas/core.h" -#include "poweruphax.h" -#include <playerAnim.h> - - -class daWMSubPlayer_c : public dActor_c { - public: - dPlayerModelHandler_c *modelHandler; - - int onCreate(); - int onDelete(); - int onDraw(); - - void update(daWMPlayer_c::state_s *st); - - int currentAnim; - float currentFrame; - float currentUnk; - float currentUpdateRate; - - bool step; - - int timer; - - mEf::es2 effect; - dHammerSuitRenderer_c hammerSuit; - - void startAnimation(int id, float frame, float unk, float updateRate); - - static daWMSubPlayer_c *build(); - static daWMSubPlayer_c *instance; -}; - -#endif - |