12 lines
153 B
C
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 |