60f7c7c254
*maybe* (Based on a true story and events)
18 lines
319 B
C++
18 lines
319 B
C++
#include <STDInclude.hpp>
|
|
|
|
#include "IO.hpp"
|
|
#include "Script.hpp"
|
|
#include "ScriptExtension.hpp"
|
|
#include "ScriptStorage.hpp"
|
|
|
|
namespace Components
|
|
{
|
|
GSC::GSC()
|
|
{
|
|
Loader::Register(new IO());
|
|
Loader::Register(new Script());
|
|
Loader::Register(new ScriptExtension());
|
|
Loader::Register(new ScriptStorage());
|
|
}
|
|
}
|