mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 16:45:03 -04:00
bf663a0e3d
* d_a_kytag06 OK and d_msg_class/object wip * add some GXDraw functions * cleanup kytag6 * remove asm
18 lines
227 B
C
18 lines
227 B
C
#ifndef GXDRAW_H
|
|
#define GXDRAW_H
|
|
|
|
#include "dolphin/gx/GXStruct.h"
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXDrawCylinder(u8 numEdges);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXDRAW_H */
|