]> Dogcows Code - chaz/yoink/blob - src/moof/event.hh
bugfix: win32 packaging script temp directories
[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 /**
16 * \file event.hh
17 * Defines an event object.
18 */
19
20 #include <SDL/SDL.h>
21
22
23 namespace moof {
24
25
26 /**
27 * The event handling in SDL is so big that it would take more time than
28 * it's worth to add an object-oriented abstraction layer that would
29 * completely cover what SDL has already layed down. Fortunately, SDL
30 * event structures are easy to work with, and it is not the purpose of
31 * this library to completely hide its dependencies or provide complete
32 * abstractions.
33 */
34 typedef SDL_Event event;
35
36
37 } // namespace moof
38
39 #endif // _MOOF_EVENT_HH_
40
This page took 0.029967 seconds and 4 git commands to generate.