File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,10 +50,6 @@ ForEachMacros:
5050 - foreach
5151 - Q_FOREACH
5252 - BOOST_FOREACH
53- StatementMacros :
54- - SerializableClassNameGetter
55- - SerializableOverrideMethods
56- - ClassInfoGetters
5753IncludeBlocks : Preserve
5854IndentCaseLabels : true
5955IndentGotoLabels : true
@@ -98,6 +94,10 @@ SpaceBeforeSquareBrackets: false
9894# InsertNewlineAtEOF: true
9995Standard : c++17
10096StatementMacros :
97+ - SerializableClassNameGetter
98+ - SerializableOverrideMethods
99+ - ClassInfoGetters
100+ - EntityAllocation
101101 - Q_UNUSED
102102 - QT_REQUIRE_VERSION
103103TabWidth : 4
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ namespace RTE {
1818
1919 public:
2020 EntityAllocation (PieMenu)
21- SerializableOverrideMethods
22- ClassInfoGetters
21+ SerializableOverrideMethods
22+ ClassInfoGetters
2323
2424#pragma region Creation
25- // / Constructor method used to instantiate a PieMenu object in system memory. Create() should be called before using the object.
26- PieMenu ();
25+ // / Constructor method used to instantiate a PieMenu object in system memory. Create() should be called before using the object.
26+ PieMenu ();
2727
2828 // / Makes the PieMenu object ready for use.
2929 // / @return An error return value signaling success or any particular failure. Anything below 0 is an error signal.
Original file line number Diff line number Diff line change @@ -200,9 +200,9 @@ namespace RTE {
200200 // Concrete allocation and cloning definitions
201201 EntityAllocation (Scene)
202202
203- // / Constructor method used to instantiate a Scene object in system
204- // / memory. Create() should be called before using the object.
205- Scene ();
203+ // / Constructor method used to instantiate a Scene object in system
204+ // / memory. Create() should be called before using the object.
205+ Scene ();
206206
207207 // / Destructor method used to clean up a Scene object before deletion
208208 // / from system memory.
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ namespace RTE {
1111
1212 public:
1313 SerializableClassNameGetter
14- SerializableOverrideMethods
14+ SerializableOverrideMethods
1515
1616#pragma region Creation
17- // / Constructor method used to instantiate a TerrainFrosting object in system memory and make it ready for use.
18- TerrainFrosting () {
17+ // / Constructor method used to instantiate a TerrainFrosting object in system memory and make it ready for use.
18+ TerrainFrosting () {
1919 Clear ();
2020 }
2121#pragma endregion
You can’t perform that action at this time.
0 commit comments