mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
13 lines
238 B
C
13 lines
238 B
C
|
#ifndef ENGINE_CLIENT_GRAPHICS_DEFINES_H
|
||
|
#define ENGINE_CLIENT_GRAPHICS_DEFINES_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef uint32_t TWGLuint;
|
||
|
typedef int32_t TWGLint;
|
||
|
typedef uint32_t TWGLenum;
|
||
|
typedef uint8_t TWGLubyte;
|
||
|
|
||
|
#endif
|