summaryrefslogtreecommitdiff
path: root/interaction_string.go
diff options
context:
space:
mode:
authoranon5 <anon5clam@protonmail.com>2021-06-22 16:30:50 +0000
committeranon5 <anon5clam@protonmail.com>2021-06-22 16:30:50 +0000
commitf967a747e4ae01fba3a6c3fd693d0e753faf3ae4 (patch)
tree22d628df079bb5cac93cc2338cfbe585ff8a2763 /interaction_string.go
parent425da65ed46061303604610bb539d6495b2b1f3f (diff)
Add String methods to some types using stringer and fix some minor defects
Diffstat (limited to 'interaction_string.go')
-rw-r--r--interaction_string.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/interaction_string.go b/interaction_string.go
new file mode 100644
index 0000000..5bd4103
--- /dev/null
+++ b/interaction_string.go
@@ -0,0 +1,28 @@
+// Code generated by "stringer -type Interaction"; DO NOT EDIT.
+
+package mt
+
+import "strconv"
+
+func _() {
+ // An "invalid array index" compiler error signifies that the constant values have changed.
+ // Re-run the stringer command to generate them again.
+ var x [1]struct{}
+ _ = x[Dig-0]
+ _ = x[StopDigging-1]
+ _ = x[Dug-2]
+ _ = x[Place-3]
+ _ = x[Use-4]
+ _ = x[Activate-5]
+}
+
+const _Interaction_name = "DigStopDiggingDugPlaceUseActivate"
+
+var _Interaction_index = [...]uint8{0, 3, 14, 17, 22, 25, 33}
+
+func (i Interaction) String() string {
+ if i >= Interaction(len(_Interaction_index)-1) {
+ return "Interaction(" + strconv.FormatInt(int64(i), 10) + ")"
+ }
+ return _Interaction_name[_Interaction_index[i]:_Interaction_index[i+1]]
+}