From a78b1c7d497296a98140431acc59565f6b08b645 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 4 Mar 2024 15:20:42 -0500 Subject: [PATCH] Add missing include guard --- LEGO1/viewmanager/viewlod.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/LEGO1/viewmanager/viewlod.h b/LEGO1/viewmanager/viewlod.h index 569e9a84..6bd0959c 100644 --- a/LEGO1/viewmanager/viewlod.h +++ b/LEGO1/viewmanager/viewlod.h @@ -1,3 +1,6 @@ +#ifndef VIEWLOD_H +#define VIEWLOD_H + #include "decomp.h" #include "realtime/roi.h" #include "tgl/tgl.h" @@ -30,3 +33,5 @@ class ViewLOD : public LODObject { Tgl::Group* m_meshGroup; // 0x04 undefined4 m_unk0x08; // 0x08 }; + +#endif // VIEWLOD_H