commit
5ed8792fbf
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
#define IW4X_COMMAP_VERSION 0
|
#define IW4X_COMMAP_VERSION 0
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
#define IW4X_FX_VERSION 1
|
#define IW4X_FX_VERSION 1
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
namespace Assets
|
namespace Assets
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
namespace Assets
|
namespace Assets
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
namespace Assets
|
namespace Assets
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
#define IW4X_IMG_VERSION "0"
|
#define IW4X_IMG_VERSION "0"
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include <StdInclude.hpp>
|
#include <STDInclude.hpp>
|
||||||
|
|
||||||
#define IW4X_CLIPMAP_VERSION 2
|
#define IW4X_CLIPMAP_VERSION 2
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ namespace Utils
|
|||||||
static Library Load(const std::filesystem::path& path);
|
static Library Load(const std::filesystem::path& path);
|
||||||
static Library GetByAddress(void* address);
|
static Library GetByAddress(void* address);
|
||||||
|
|
||||||
Library() : _module(GetModuleHandleA(nullptr)), freeOnDestroy(false) {};
|
Library() : _module(nullptr), freeOnDestroy(false) {};
|
||||||
explicit Library(const std::string& name, bool freeOnDestroy);
|
explicit Library(const std::string& name, bool freeOnDestroy);
|
||||||
explicit Library(const std::string& name) : _module(GetModuleHandleA(name.data())), freeOnDestroy(true) {};
|
explicit Library(const std::string& name) : _module(GetModuleHandleA(name.data())), freeOnDestroy(true) {};
|
||||||
explicit Library(HMODULE handle);
|
explicit Library(HMODULE handle);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user