This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/byte_patch_manager.hpp
Andreas Maerten f96356960a
refactor!: General changes (#1578)
- Removed try catch from main.cpp for better error logging
- Added migration code to the YimMenu folder
- Renamed globals to settings
- refactor!: changed symlink
2023-07-02 00:52:36 +02:00

16 lines
227 B
C++

#pragma once
extern "C" std::uint64_t g_sound_overload_ret_addr;
namespace big
{
class byte_patch_manager
{
public:
byte_patch_manager();
~byte_patch_manager();
};
inline byte_patch_manager* g_byte_patch_manager;
}