mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
For now we reload all scripts. We should be smarter and only reload those scripts which are affected though.
38 lines
No EOL
923 B
C++
38 lines
No EOL
923 B
C++
// AUTOGENERATED file, created by the tool generate_stub.py, don't edit!
|
|
// If you want to add your own functionality, instead edit the stubScriptKit_custom.h file.
|
|
|
|
#include "common/ScriptKit.h"
|
|
#include "stubScriptKit_custom.h"
|
|
|
|
#ifndef STUB_COMMON_SCRIPTKIT_H
|
|
#define STUB_COMMON_SCRIPTKIT_H
|
|
|
|
#ifndef STUB_ScriptKit_package
|
|
//#define STUB_ScriptKit_package
|
|
template <typename T>
|
|
const std::string& ScriptKit<T>::package() const
|
|
{
|
|
static std::string instance; return instance;
|
|
}
|
|
#endif //STUB_ScriptKit_package
|
|
|
|
#ifndef STUB_ScriptKit_addScript
|
|
//#define STUB_ScriptKit_addScript
|
|
template <typename T>
|
|
int ScriptKit<T>::addScript(T * entity) const
|
|
{
|
|
return 0;
|
|
}
|
|
#endif //STUB_ScriptKit_addScript
|
|
|
|
#ifndef STUB_ScriptKit_refreshClass
|
|
//#define STUB_ScriptKit_refreshClass
|
|
template <typename T>
|
|
int ScriptKit<T>::refreshClass()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif //STUB_ScriptKit_refreshClass
|
|
|
|
|
|
#endif |