mirror of
https://github.com/fortressforever/fortressforever-2013.git
synced 2024-11-10 07:11:45 +00:00
made lua scriptman (stub) shared
This commit is contained in:
parent
41130702a1
commit
40b86daaa7
4 changed files with 12 additions and 8 deletions
|
@ -36,10 +36,7 @@ $Project "Server (FF)"
|
|||
{
|
||||
$File "FF\ff_client.cpp"
|
||||
$File "FF\ff_gameinterface.cpp"
|
||||
|
||||
$File "FF\ff_scriptman.cpp"
|
||||
$File "FF\ff_scriptman.h"
|
||||
|
||||
|
||||
$Folder "Libraries"
|
||||
{
|
||||
$Lib lua
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
// includes
|
||||
#include "cbase.h"
|
||||
//#include "ff_scriptman.h"
|
||||
#include "ff_scriptman.h"
|
||||
//#include "ff_entity_system.h"
|
||||
//#include "ff_luacontext.h"
|
||||
//#include "ff_lualib.h"
|
||||
//#include "ff_utils.h"
|
||||
//#include "ff_item_flag.h"
|
||||
#include "triggers.h"
|
||||
//#include "triggers.h"
|
||||
|
||||
// engine
|
||||
#include "filesystem.h"
|
||||
|
@ -25,8 +25,9 @@
|
|||
//#undef min
|
||||
//#undef max
|
||||
//
|
||||
//// luabind
|
||||
//#include "luabind/luabind.hpp"
|
||||
// luabind
|
||||
#include "lua.hpp"
|
||||
#include "luabind/luabind.hpp"
|
||||
//#include "luabind/object.hpp"
|
||||
//#include "luabind/iterator_policy.hpp"
|
||||
|
|
@ -1,8 +1,14 @@
|
|||
// VPC included in client/server FF VPCs containing all shared
|
||||
|
||||
// expects $SRCDIR macro to exist
|
||||
$Project
|
||||
{
|
||||
$Folder "FF Shared"
|
||||
{
|
||||
$Folder "Lua"
|
||||
{
|
||||
$File "$SRCDIR\game\shared\ff\ff_scriptman.cpp"
|
||||
$File "$SRCDIR\game\shared\ff\ff_scriptman.h"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue