summaryrefslogtreecommitdiff
path: root/common/action.cpp
diff options
context:
space:
mode:
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;
-}