summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Input/InputDevice.hpp
blob: eb0b7a37b2edf9b21fe80a835cfa359f8f44c1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __ASURA_ENGINE_INPUT_BASE_H__
#define __ASURA_ENGINE_INPUT_BASE_H__

#include "Scripting/Portable.h"
#include "Config.h"
#include "Singleton.hpp"

namespace AsuraEngine 
{
	namespace Input
	{

		///
		/// 豸һ
		///
		template<class T> 
		ASURA_ABSTRACT class InputDevice
			: virtual public Scripting::Portable
			, virtual public Singleton<T>
		{
		public:
			InputDevice();
			virtual ~InputDevice();

		};

	}
}

#endif