mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
c65c2dbb8f
* split Z2SeMgr / begin split of Z2SeqMgr * Z2StatusMgr ok most of Z2StatusMgr done, rest split * name some class members * name some Z2SceneMgr vars Co-authored-by: Pheenoh <pheenoh@gmail.com>
16 lines
224 B
C
16 lines
224 B
C
#ifndef _global_h_
|
|
#define _global_h_
|
|
|
|
#define ARRAY_SIZE(o) (sizeof((o)) / sizeof(*(o)))
|
|
|
|
struct Vec{
|
|
float x,y,z;
|
|
};
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#include "os/OS.h"
|
|
#include "functions.h"
|
|
#include "variables.h"
|
|
|
|
#endif |