Files
Nuake-custom/Nuake/Vendors/libmap/h/brush.h
2025-01-30 22:41:17 -05:00

12 lines
153 B
C

#ifndef BRUSH_H
#define BRUSH_H
typedef struct face face;
typedef struct brush {
int face_count;
face *faces;
vec3 center;
} brush;
#endif