mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-20 18:29:13 +00:00
General: Remove unnecessary inline specifiers and add overrides
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
class CTweakCooker
|
||||
{
|
||||
/** Private constructor */
|
||||
CTweakCooker() {}
|
||||
CTweakCooker() = default;
|
||||
|
||||
public:
|
||||
/** Cooker entry point */
|
||||
|
||||
@@ -43,17 +43,17 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
inline CScriptTemplate* TweakTemplate() const
|
||||
CScriptTemplate* TweakTemplate() const
|
||||
{
|
||||
return mpTemplate;
|
||||
}
|
||||
|
||||
inline uint32 TweakID() const
|
||||
uint32 TweakID() const
|
||||
{
|
||||
return mTweakID;
|
||||
}
|
||||
|
||||
inline CStructRef TweakData() const
|
||||
CStructRef TweakData() const
|
||||
{
|
||||
return CStructRef((void*) mTweakData.data(), mpTemplate->Properties());
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
class CTweakLoader
|
||||
{
|
||||
/** Private constructor */
|
||||
CTweakLoader() {}
|
||||
CTweakLoader() = default;
|
||||
|
||||
public:
|
||||
/** Loader entry point */
|
||||
|
||||
@@ -16,7 +16,7 @@ class CTweakManager
|
||||
TString mStandardFilePath;
|
||||
|
||||
public:
|
||||
CTweakManager(CGameProject* pInProject);
|
||||
explicit CTweakManager(CGameProject* pInProject);
|
||||
~CTweakManager();
|
||||
void LoadTweaks();
|
||||
bool SaveTweaks();
|
||||
|
||||
Reference in New Issue
Block a user