mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
22 lines
404 B
C
22 lines
404 B
C
|
#ifndef __LINE_H
|
||
|
#define __LINE_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace NxNgc
|
||
|
{
|
||
|
|
||
|
|
||
|
void BeginLines2D(uint32 rgba);
|
||
|
void DrawLine2D(float x0, float y0, float z0, float x1, float y1, float z1);
|
||
|
void EndLines2D(void);
|
||
|
void BeginLines3D(uint32 rgba);
|
||
|
void DrawLine3D(float x0, float y0, float z0, float x1, float y1, float z1);
|
||
|
void EndLines3D(void);
|
||
|
|
||
|
} // namespace NxNgc
|
||
|
|
||
|
|
||
|
#endif // __LINE_H
|
||
|
|