-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3a22e6
commit 41f0f1f
Showing
19 changed files
with
137 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
#pragma once | ||
|
||
namespace RE | ||
namespace RE::BSScript | ||
{ | ||
namespace BSScript | ||
{ | ||
class IVirtualMachine; | ||
class StackFrame; | ||
class IVirtualMachine; | ||
class StackFrame; | ||
|
||
class ISavePatcherInterface | ||
{ | ||
public: | ||
static constexpr auto RTTI{ RTTI::BSScript__ISavePatcherInterface }; | ||
static constexpr auto VTABLE{ VTABLE::BSScript__ISavePatcherInterface }; | ||
class ISavePatcherInterface | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BSScript__ISavePatcherInterface); | ||
|
||
virtual ~ISavePatcherInterface() = default; // 00 | ||
virtual ~ISavePatcherInterface() = default; // 00 | ||
|
||
// add | ||
virtual void PatchStackFrame(StackFrame&, IVirtualMachine&) = 0; // 01 | ||
}; | ||
static_assert(sizeof(ISavePatcherInterface) == 0x8); | ||
} | ||
// add | ||
virtual void PatchStackFrame(StackFrame&, IVirtualMachine&) = 0; // 01 | ||
}; | ||
static_assert(sizeof(ISavePatcherInterface) == 0x8); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.