mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Merge pull request #222 from DavidWyand-GG/MovePlatformInputEvent
Moved platform input event files under new input directory
This commit is contained in:
commit
4edcb60e46
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _I_PROCESSINPUT_H_
|
||||
#define _I_PROCESSINPUT_H_
|
||||
|
||||
#include "platform/event.h"
|
||||
#include "platform/input/event.h"
|
||||
|
||||
|
||||
// CodeReview : Input can come from a number of places to end up in
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
|
||||
#include "gfx/gfxDevice.h"
|
||||
#include "platform/event.h"
|
||||
#include "platform/input/event.h"
|
||||
|
||||
class GBitmap;
|
||||
class SFXTrack;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include "platform/event.h"
|
||||
#include "platform/input/event.h"
|
||||
#include "core/module.h"
|
||||
#include "core/util/journal/process.h"
|
||||
#include "core/strings/stringFunctions.h"
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
#define _EVENT_H_
|
||||
|
||||
#include "platform/types.h"
|
||||
#include "platform/IInputDevice.h"
|
||||
#include "platform/input/IInputDevice.h"
|
||||
#include "core/util/journal/journaledSignal.h"
|
||||
#include "core/util/tSingleton.h"
|
||||
#include "core/util/tDictionary.h"
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#include "console/consoleTypes.h"
|
||||
#include "platform/threads/mutex.h"
|
||||
#include "app/mainLoop.h"
|
||||
#include "platform/event.h"
|
||||
#include "platform/input/event.h"
|
||||
#include "platform/typetraits.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#include "console/simBase.h"
|
||||
#endif
|
||||
|
||||
#include "platform/event.h"
|
||||
#include "platform/input/event.h"
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
U8 TranslateOSKeyCode( U8 vcode );
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ switch( Generator::$platform )
|
|||
|
||||
addEngineSrcDir('platform/threads');
|
||||
addEngineSrcDir('platform/async');
|
||||
addEngineSrcDir('platform/input');
|
||||
addEngineSrcDir('app');
|
||||
addEngineSrcDir('app/net');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue