mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
19 lines
239 B
C++
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 );
|
|
}
|
|
}
|
|
}
|