From f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Mon, 9 Jul 2018 19:26:13 +0200 Subject: Game has been restructured in favor of OOP --- Unit.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Unit.cpp (limited to 'Unit.cpp') diff --git a/Unit.cpp b/Unit.cpp new file mode 100644 index 0000000..74a2110 --- /dev/null +++ b/Unit.cpp @@ -0,0 +1,35 @@ +/* ************************************* + * Includes + * *************************************/ + +#include "Unit.h" + +/* ************************************* + * Defines + * *************************************/ + +/* ************************************* + * Structs and enums + * *************************************/ + +/* ************************************* + * Global Variables + * *************************************/ + +/* ************************************* + * Local Variables + * *************************************/ + +/* ************************************* + * Local Prototypes + * *************************************/ + +/*****************************************************************//** + * + * \brief Constructor for Unit class. + * + *********************************************************************/ +Unit::Unit(void) +{ +} + -- cgit v1.2.3