mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 15:21:08 -04:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
17 lines
194 B
C
17 lines
194 B
C
#ifndef GXDRAW_H
|
|
#define GXDRAW_H
|
|
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXDrawCylinder(u8 numEdges);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXDRAW_H */
|