mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
21 lines
232 B
C
21 lines
232 B
C
#ifndef M_LIGHTS_H
|
|
#define M_LIGHTS_H
|
|
|
|
#include "types.h"
|
|
#include "PR/mbi.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct lightsn_s {
|
|
u8 diffuse_count;
|
|
Lights7 lights;
|
|
} LightsN;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|