16 lines
244 B
C
Executable File
16 lines
244 B
C
Executable File
#ifndef TEXTURE_H
|
|
#define TEXTURE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
float u;
|
|
float v;
|
|
} tex2_t;
|
|
|
|
extern int texture_width;
|
|
extern int texture_height;
|
|
extern uint32_t* mesh_texture;
|
|
extern const uint8_t REDBRICK_TEXTURE[];
|
|
|
|
#endif |