mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
f9380b3e05
* 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 */
|