fix msvc linker error
This commit is contained in:
parent
924957ddee
commit
89d9447410
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
namespace fs = std::filesystem;
|
namespace fs = std::filesystem;
|
||||||
|
|
||||||
ContentLoader::ContentLoader(const ContentPack* pack) : pack(pack) {
|
ContentLoader::ContentLoader(ContentPack* pack) : pack(pack) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: add basic validation and logging
|
// TODO: add basic validation and logging
|
||||||
|
|||||||
@ -11,7 +11,7 @@ class ContentBuilder;
|
|||||||
class ContentLoader {
|
class ContentLoader {
|
||||||
const ContentPack* pack;
|
const ContentPack* pack;
|
||||||
public:
|
public:
|
||||||
ContentLoader(const ContentPack* pack);
|
ContentLoader(ContentPack* pack);
|
||||||
|
|
||||||
Block* loadBlock(std::string name, std::filesystem::path file);
|
Block* loadBlock(std::string name, std::filesystem::path file);
|
||||||
void load(ContentBuilder* builder);
|
void load(ContentBuilder* builder);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user