Files
PDModdingCommunity_PD-Loader/source-code/source/PD-Loader/Patches/PatchApplier.h
T

8 lines
196 B
C++

#pragma once
// PatchApplier provides the stuff for implementing patches for the specific game version
class PatchApplier {
public:
virtual void ApplyPatches() = 0;
void ApplyExPatches() {};
};