mirror of
https://github.com/pret/pmd-sky.git
synced 2026-07-21 19:02:14 -05:00
23 lines
379 B
C
23 lines
379 B
C
#ifndef PMDSKY_GLOBAL_H
|
|
#define PMDSKY_GLOBAL_H
|
|
|
|
#include <nitro.h>
|
|
#include <nitro/code16.h>
|
|
#include <nnsys.h>
|
|
|
|
#include <string.h>
|
|
#include <stddef.h>
|
|
|
|
#include "config.h" // MUST COME BEFORE ANY OTHER GAME-SPECIFIC HEADERS
|
|
#include "assert.h"
|
|
|
|
#define NELEMS(a) (sizeof(a) / sizeof(*(a)))
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
} Vec32;
|
|
|
|
#endif //PMDSKY_GLOBAL_H
|