增加lua系统

This commit is contained in:
Huoji's
2023-10-02 18:04:54 +08:00
parent dc75327dec
commit 88f121e295
71 changed files with 30605 additions and 7 deletions

6
csgo2/script_engine.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include "head.h"
namespace ScriptEngine {
auto Init() -> void;
auto callFunction(const char* funcName) -> int;
}