summaryrefslogtreecommitdiff
path: root/src/inputevent.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-03-24 04:26:57 +0300
committerAndrei Karas <akaras@inbox.ru>2012-03-26 21:45:24 +0300
commit36e5d21fe06709ba4d12a8619af07b86a676cf8c (patch)
treea9209e16e6f31cd74047f86ef1e642f467e128e2 /src/inputevent.h
parent0921a130f0241a17ffcedf92d602808e18f1614b (diff)
downloadManaVerse-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.gz
ManaVerse-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.bz2
ManaVerse-36e5d21fe06709ba4d12a8619af07b86a676cf8c.tar.xz
ManaVerse-36e5d21fe06709ba4d12a8619af07b86a676cf8c.zip
Redesign input handling.
Diffstat (limited to 'src/inputevent.h')
-rw-r--r--src/inputevent.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/inputevent.h b/src/inputevent.h
new file mode 100644
index 000000000..7b73bba11
--- /dev/null
+++ b/src/inputevent.h
@@ -0,0 +1,33 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2012 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef INPUTEVENT_H
+#define INPUTEVENT_H
+
+struct InputEvent
+{
+ InputEvent(int action0, int mask0);
+
+ int action;
+
+ int mask;
+};
+
+#endif