summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/input/event_manager.h
blob: b81b7ffd942a9653d36cabbf2ad4d556274a9a84 (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
#ifndef __ASURA_EVENT_MANANGER_H__
#define __ASURA_EVENT_MANANGER_H__

#include "equeue.h"

namespace AsuraEngine
{
	namespace Input
	{

		class EventManager
		{
		public:

		private:

			EQueue mQueue;

		};

	}
}

#endif