added contructor for the actions

This commit is contained in:
Scott Moynes 2002-07-19 22:34:28 +00:00
parent a0e50e15b5
commit ba58f65d00

5
util/epist/actions.cc Normal file
View file

@ -0,0 +1,5 @@
#include "actions.hh"
Action::Action(enum ActionType type, KeyCode keycode, int modifierMask):
_type(type), _keycode(keycode), _modifierMask(modifierMask)
{ }