Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/event/key_mapper.h @ 4367

Last change on this file since 4367 was 4367, checked in by patrick, 19 years ago

orxonox/trunk: added keymapper class to separate event handling from key mapping

File size: 344 bytes
Line 
1/*!
2    \file key_mapper.h
3    \brief a construct to map player defined keys to SDL keys
4
5*/
6
7#ifndef _KEY_MAPPER_H
8#define _KEY_MAPPER_H
9
10
11#include "base_object.h"
12#include "event_def.h"
13
14
15//! The map class functionalities
16class KeyMapper : public BaseObject {
17
18 public:
19  KeyMapper();
20  virtual ~KeyMapper();
21
22};
23
24#endif /* _KEY_MAPPER_H */
Note: See TracBrowser for help on using the repository browser.