diff options
Diffstat (limited to 'source/Asura.Runner')
-rw-r--r-- | source/Asura.Runner/Main.cpp | 13 | ||||
-rw-r--r-- | source/Asura.Runner/main.cpp | 8 | ||||
-rw-r--r-- | source/Asura.Runner/runner.cpp | 0 | ||||
-rw-r--r-- | source/Asura.Runner/runner.h | 21 |
4 files changed, 16 insertions, 26 deletions
diff --git a/source/Asura.Runner/Main.cpp b/source/Asura.Runner/Main.cpp new file mode 100644 index 0000000..ac91f97 --- /dev/null +++ b/source/Asura.Runner/Main.cpp @@ -0,0 +1,13 @@ +#ifndef _ASURA_RUNNER_MAIN_H_ +#define _ASURA_RUNNER_MAIN_H_ + +#include <SDL2/SDL.h> + +/// SDL +int main(int args, char* argv[]) +{ + + return 0; +} + +#endif
\ No newline at end of file diff --git a/source/Asura.Runner/main.cpp b/source/Asura.Runner/main.cpp index 0ce68b6..ac91f97 100644 --- a/source/Asura.Runner/main.cpp +++ b/source/Asura.Runner/main.cpp @@ -1,9 +1,7 @@ -#ifndef __ASURA_RUNNER_MAIN_H__ -#define __ASURA_RUNNER_MAIN_H__ +#ifndef _ASURA_RUNNER_MAIN_H_ +#define _ASURA_RUNNER_MAIN_H_ -#include "runner.h" - -using namespace AsuraRunner; +#include <SDL2/SDL.h> /// SDL int main(int args, char* argv[]) diff --git a/source/Asura.Runner/runner.cpp b/source/Asura.Runner/runner.cpp deleted file mode 100644 index e69de29..0000000 --- a/source/Asura.Runner/runner.cpp +++ /dev/null diff --git a/source/Asura.Runner/runner.h b/source/Asura.Runner/runner.h deleted file mode 100644 index 52f4d65..0000000 --- a/source/Asura.Runner/runner.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef __ASURA_RUNNER_H__ -#define __ASURA_RUNNER_H__ - -#include <windows.h> - -#include <asura-core/input/input_device.h> - -namespace AsuraRunner -{ - - class SDLInputDevice : public AEInput::InputDevice - { - public: - - - - }; - -} - -#endif
\ No newline at end of file |