blob: ea4ba2acbce4824ca67be35a39ac2c92e3988992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __EFFECTS_H
#define __EFFECTS_H
#include <common.h>
#include <game.h>
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);
// Actually will return an EGG::Effect instance
//void* CustomEffectSpawn(const char* name);
#endif
|