--- /dev/null
+/*
+ * Trigger.h
+ *
+ * Created on: Oct 3, 2012
+ * Author: holy
+ */
+
+#ifndef MAP_TRIGGER_H_
+#define MAP_TRIGGER_H_
+
+#include "../geometry/Vector.h"
+
+namespace map {
+
+class Trigger {
+
+public:
+ Trigger();
+ ~Trigger() { }
+
+public:
+ const geometry::Vector<int> &TilePosition() const { return tilePosition; }
+
+// temporary setters
+public:
+ void SetTilePosition(const geometry::Vector<int> &p) { tilePosition = p; }
+
+private:
+ geometry::Vector<int> tilePosition;
+
+};
+
+}
+
+#endif /* MAP_TRIGGER_H_ */