| 1234567891011121314151617181920212223242526 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #pragma once
- #include <Atomic/Core/Context.h>
- #include <Atomic/IO/FileSystem.h>
- #include <Atomic/Engine/Engine.h>
- using namespace Atomic;
- class JSBind
- {
- public:
- static void Initialize();
- static SharedPtr<Context> context_;
- static SharedPtr<FileSystem> fileSystem_;
- static SharedPtr<Engine> engine_;
- static String ROOT_FOLDER;
- static String PLATFORM;
- };
|