Coding style

This commit is contained in:
AnonymusRaccoon
2020-03-12 18:31:36 +01:00
parent d23aef0881
commit 9d4cfec973
40 changed files with 941 additions and 1088 deletions
@@ -9,18 +9,18 @@
enum brush
{
MOVE,
RESET,
ROTATE,
TEXTURE
MOVE,
RESET,
ROTATE,
TEXTURE
};
struct map_manager_component
{
gc_component base;
bool tile_mode;
enum brush brush;
void *selected_texture;
gc_component base;
bool tile_mode;
enum brush brush;
void *selected_texture;
};
const struct map_manager_component map_manager_component;