mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
16 lines
227 B
C
16 lines
227 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 "functions.h"
|
|
#include "os/OS.h"
|
|
#include "variables.h"
|
|
|
|
#endif |