summaryrefslogtreecommitdiff
path: root/include/egg/core/eggSystem.h
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-03-17 18:55:49 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-03-17 18:55:49 -0400
commit6ca7763bc02e3307ba782cf6201d16d5386b2906 (patch)
tree6de43ba0736d7377ad4a33068cd1fdc241799629 /include/egg/core/eggSystem.h
parentde0d7a8e0afee90ee913685d31fc02301d652210 (diff)
change to header guards wooo
Diffstat (limited to 'include/egg/core/eggSystem.h')
-rw-r--r--include/egg/core/eggSystem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/egg/core/eggSystem.h b/include/egg/core/eggSystem.h
index c8c4765e..e124b306 100644
--- a/include/egg/core/eggSystem.h
+++ b/include/egg/core/eggSystem.h
@@ -1,9 +1,9 @@
-#pragma once
+#ifndef EGG_SYSTEM_H
+#define EGG_SYSTEM_H
#include "egg/core/eggHeap.h"
#include <common.h>
-
namespace EGG {
class Display;
@@ -58,3 +58,5 @@ public:
};
} // namespace EGG
+
+#endif