fix build

This commit is contained in:
m 2022-10-21 17:15:58 -05:00
parent 085e0e9768
commit 14989a3d2d
3 changed files with 13 additions and 3 deletions

View File

@ -6,6 +6,7 @@
#include "component/filesystem.hpp"
#include "component/logfile.hpp"
#include "component/scripting.hpp"
#include "component/gsc/script_loading.hpp"
#include "game/dvars.hpp"

View File

@ -0,0 +1,8 @@
#pragma once
namespace gsc
{
void load_main_handles();
void load_init_handles();
game::ScriptFile* find_script(game::XAssetType type, const char* name, int allow_create_default);
}

View File

@ -1,9 +1,10 @@
#include <std_include.hpp>
#include "loader/component_loader.hpp"
#include "gsc.hpp"
#include "scheduler.hpp"
#include "scripting.hpp"
#include "component/gsc/script_extension.hpp"
#include "component/gsc/script_loading.hpp"
#include "component/scheduler.hpp"
#include "component/scripting.hpp"
#include "game/game.hpp"