blob: c7b5ea991f3f4c38cf48e296c1cb3d96b391250f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
void InitWindow(int width, int height, const char *title);
typedef struct Rectangle {
float height; // Rectangle height
} Rectangle;
typedef struct Texture {
unsigned int id; // OpenGL texture id
int format; // Data format (PixelFormat type)
} Texture;
typedef Texture Texture2D;
|