Files
ac-decomp/include/dolphin/gx.h
T
2023-05-22 06:15:38 -04:00

19 lines
199 B
C

#ifndef DOLPHIN_GX_H
#define DOLPHIN_GX_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
#define GX_CLAMP 0
#define GX_REPEAT 1
#define GX_MIRROR 2
#ifdef __cplusplus
}
#endif
#endif