]> Dogcows Code - chaz/yoink/blob - src/Moof/Event.hh
reformatting
[chaz/yoink] / src / Moof / Event.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _MOOF_EVENT_HH_
13 #define _MOOF_EVENT_HH_
14
15 #include <SDL/SDL.h>
16
17
18 namespace Mf {
19
20
21 // The event handling in SDL is so big that it would take more time than
22 // it's worth to add an object-oriented abstraction layer that would
23 // completely cover what SDL has already layed down. Fortunately, SDL
24 // event structures are easy to work with, and it is not the purpose of
25 // this library to completely hide its dependencies and provide complete
26 // abstractions.
27
28 typedef SDL_Event Event;
29
30
31 } // namespace Mf
32
33 #endif // _MOOF_EVENT_HH_
34
This page took 0.038033 seconds and 4 git commands to generate.