diff options
Diffstat (limited to 'source/Asura.Runner')
-rw-r--r-- | source/Asura.Runner/main.cpp | 15 | ||||
-rw-r--r-- | source/Asura.Runner/runner.cpp | 10 | ||||
-rw-r--r-- | source/Asura.Runner/runner.h | 17 |
3 files changed, 26 insertions, 16 deletions
diff --git a/source/Asura.Runner/main.cpp b/source/Asura.Runner/main.cpp new file mode 100644 index 0000000..0ce68b6 --- /dev/null +++ b/source/Asura.Runner/main.cpp @@ -0,0 +1,15 @@ +#ifndef __ASURA_RUNNER_MAIN_H__ +#define __ASURA_RUNNER_MAIN_H__ + +#include "runner.h" + +using namespace AsuraRunner; + +/// SDL +int main(int args, char* argv[]) +{ + + return 0; +} + +#endif
\ No newline at end of file diff --git a/source/Asura.Runner/runner.cpp b/source/Asura.Runner/runner.cpp index 47f44ec..e69de29 100644 --- a/source/Asura.Runner/runner.cpp +++ b/source/Asura.Runner/runner.cpp @@ -1,10 +0,0 @@ -#include "Asura.h" -#include "Runner.h" - -void Runner::Run(int argc, char* args[]) -{ - - -} - -ASURA_RUN(Runner);
\ No newline at end of file diff --git a/source/Asura.Runner/runner.h b/source/Asura.Runner/runner.h index 8d1bc49..52f4d65 100644 --- a/source/Asura.Runner/runner.h +++ b/source/Asura.Runner/runner.h @@ -1,16 +1,21 @@ #ifndef __ASURA_RUNNER_H__ #define __ASURA_RUNNER_H__ -#include "Asura.h" +#include <windows.h> -using namespace AsuraEngine; +#include <asura-core/input/input_device.h> -class Runner : public Application +namespace AsuraRunner { -public: - void Run(int argc, char* args[]) override; + class SDLInputDevice : public AEInput::InputDevice + { + public: -}; + + + }; + +} #endif
\ No newline at end of file |