blob: c3e113760d5c97e2a0e77da826ba8b811a097051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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 */
|