mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
17 lines
267 B
C++
17 lines
267 B
C++
#ifndef CPPSCRIPTSOLD_H
|
|
#define CPPSCRIPTSOLD_H
|
|
|
|
#include <string>
|
|
|
|
class Entity;
|
|
|
|
namespace CppScripts {
|
|
class Script;
|
|
};
|
|
|
|
namespace CppScriptsOld {
|
|
CppScripts::Script* const GetScript(Entity* entity, const std::string& scriptName);
|
|
};
|
|
|
|
#endif //!CPPSCRIPTSOLD_H
|