summaryrefslogtreecommitdiff
path: root/common/action.cpp
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-12-19 12:19:41 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-12-19 12:19:41 +0100
commit94a1189d757f0269ac081ad2d750152e30564986 (patch)
tree71da6c79ce4f96795e3ddd3ef374c617a57c8d08 /common/action.cpp
parent5824342e0ffbcac84bfb2c1c6ed3590fd1cdfc4d (diff)
Linked common as submodule.
Diffstat (limited to 'common/action.cpp')
m---------common0
-rw-r--r--common/action.cpp14
2 files changed, 0 insertions, 14 deletions
diff --git a/common b/common
new file mode 160000
+Subproject dd64a35c949738c2c321989d065e0754556823d
diff --git a/common/action.cpp b/common/action.cpp
deleted file mode 100644
index 527d25e..0000000
--- a/common/action.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "action.h"
-#include <algorithm>
-
-Action::Action() : target_type(None), target_offset(0) {
-
-}
-
-Action::Action(Type ty, TargetType tt, int to) : type(ty), target_type(tt), target_offset(to) {
-
-}
-
-bool Action::operator==(const Action& other) {
- return type == other.type && target_type == other.target_type && target_offset == other.target_offset;
-}