Initial refactoring (WARNING: largely untested)

This commit is contained in:
nastys
2021-09-18 19:45:08 +02:00
parent ecf9b62298
commit d62855c69a
24 changed files with 1096 additions and 689 deletions
@@ -3,5 +3,6 @@
// PatchApplier provides the stuff for implementing patches for the specific game version
class PatchApplier {
public:
virtual void ApplyPatches() {};
virtual void ApplyPatches() = 0;
void ApplyExPatches() {};
};