diff options
author | Stephen Simpson <megazig@gmail.com> | 2011-10-14 00:35:39 -0500 |
---|---|---|
committer | Stephen Simpson <megazig@gmail.com> | 2011-10-14 00:35:39 -0500 |
commit | 1897a8a60cec5bf43bf5cf04cc6b188138aed3ee (patch) | |
tree | 8b075ca427fce385425c5d530e3a3074eaeb9279 /src/effects.h | |
parent | b3c762b06e3238208ba54651545ca51b23e008c9 (diff) | |
parent | 48713b7a405c95022e85f4cf5ce7c27363815d74 (diff) | |
download | kamek-1897a8a60cec5bf43bf5cf04cc6b188138aed3ee.tar.gz kamek-1897a8a60cec5bf43bf5cf04cc6b188138aed3ee.zip |
Merge branch 'megaTestBoss' into level-select
Diffstat (limited to 'src/effects.h')
-rw-r--r-- | src/effects.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/effects.h b/src/effects.h index ea4ba2a..ceda53f 100644 --- a/src/effects.h +++ b/src/effects.h @@ -4,9 +4,15 @@ #include <common.h> #include <game.h> +/* +S16Vec* tRot = &(S16Vec){ 0, 0, 0}; +Vec* tScale = &(Vec){0.0, 0.0, 0.0}; +*/ + bool CreateEffect(dEn_c* enemy, int effect_num); bool CreateEffect(Vec* pos, S16Vec* rot, Vec* scale, int effect_num); -bool CreateEffect(const char* name, Vec* pos); +bool CreateEffect(Vec* pos, S16Vec* rot, Vec* scale, int effect_num); +bool CreateEffect(int effect_num, Vec* pos, S16Vec* rot = 0, Vec* scale = 0); // Actually will return an EGG::Effect instance //void* CustomEffectSpawn(const char* name); |