"include guards" what a silly name

This commit is contained in:
CreateSource 2023-12-06 19:38:14 -05:00
parent f5bc2b7dee
commit 303f4da091

View file

@ -1,3 +1,6 @@
#ifndef _GAME_HSFMAN_H
#define _GAME_HSFMAN_H
#include "common.h"
#include "game/memory.h"
#include "game/hsfformat.h"
@ -70,3 +73,4 @@ typedef struct fog_data {
f32 end;
GXColor color;
} FogStruct;
#endif