mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-09 04:29:46 -04:00
5e7b59f2fe
* fix returns * use standard C headers * struct/class mismatch * explicit this in template * switch variable scope * C standard compliance * & l-value
19 lines
452 B
C++
19 lines
452 B
C++
#ifndef D_KANKYO_DEMO_H
|
|
#define D_KANKYO_DEMO_H
|
|
|
|
#include "d/d_kankyo.h"
|
|
|
|
class cXyz;
|
|
|
|
struct DEMO_PLIGHT {
|
|
/* 0x00 */ int field_0x00;
|
|
/* 0x04 */ int field_0x04;
|
|
/* 0x08 */ LIGHT_INFLUENCE mLightInfluence;
|
|
};
|
|
|
|
void dKydm_demo_plight_entry(DEMO_PLIGHT* i_plight, cXyz* i_pos, int param_2, u8 param_3);
|
|
void dKydm_demo_plight_delete(DEMO_PLIGHT* i_plight);
|
|
void dKydm_demo_plight_execute(DEMO_PLIGHT* i_plight);
|
|
|
|
#endif /* D_KANKYO_DEMO_H */
|