From b5b9c95de160a97701777d37187de194d0b29e61 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 2 Jan 2022 19:55:40 +0000 Subject: Replace include guard macros with pragma once --- game/worldobject.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'game/worldobject.h') diff --git a/game/worldobject.h b/game/worldobject.h index ba77cd0..994545b 100644 --- a/game/worldobject.h +++ b/game/worldobject.h @@ -1,5 +1,4 @@ -#ifndef WORLDOBJECT_H -#define WORLDOBJECT_H +#pragma once #include "chronology.hpp" #include @@ -13,5 +12,3 @@ public: virtual void tick(TickDuration elapsed) = 0; }; - -#endif -- cgit v1.2.3