Files
wagic/projects/mtg/include/TranslateKeys.h
jean.chalard 2566d780b1 J :
* Display pictures for buttons on PSP in the keybinding screen.
* Fix a bug where the New Binding... button would disappear when
  creating a new binding.
* Fix a bug where the menu to choose the bound symbol was not modal.
2010-02-27 18:49:03 +00:00

13 lines
231 B
C++

#ifndef _TRANSLATEKEYS_H_
#define _TRANSLATEKEYS_H_
#include <utility>
#include <string>
#include "JGE.h"
typedef pair<string, JQuad*> KeyRep;
const KeyRep& translateKey(LocalKeySym);
const KeyRep& translateKey(JButton);
#endif