| 1234567891011121314151617181920212223242526 |
- #include "ScriptSystem.h"
- #include "ScriptComponent.h"
- #include "ScriptComponentFile.h"
- namespace Atomic
- {
- void RegisterScriptLibrary(Context* context);
- ScriptSystem::ScriptSystem(Context* context) : Object(context)
- {
- RegisterScriptLibrary(context);
- }
- ScriptSystem::~ScriptSystem()
- {
- }
- void RegisterScriptLibrary(Context* context)
- {
- ScriptComponentFile::RegisterObject(context);
- ScriptComponent::RegisterObject(context);
- }
- }
|