polserver/pol-core/pol/mobile/chrskuse.cpp
turleypol dbb25bdb62
Include and buildsystem cleanup (#45)
Include cleanup
Reworked buildsystem (Linux only)
Removed dynamic libs, Linux now again uses static linking (like windows)
2018-01-29 21:55:48 +01:00

19 lines
239 B
C++

/** @file
*
* @par History
*/
#include "../../bscript/eprog.h"
#include "charactr.h"
namespace Pol
{
namespace Mobile
{
bool Character::start_skill_script( Bscript::EScriptProgram* prog )
{
return start_script( prog, true );
}
}
}