start to clone warehouse

This commit is contained in:
cuu
2021-10-20 01:34:36 +08:00
parent 21ae3d9358
commit 23b2f6caf8
12 changed files with 1102 additions and 3 deletions

View File

@@ -65,3 +65,11 @@ func keys_def_init() {
CurKeys = PC
}
}
func IsKeyStartOrA(key string) bool {
return key == CurKeys["Start"] || key == CurKeys["A"]
}
func IsKeyMenuOrB(key string) bool {
return key == CurKeys["Menu"] || key == CurKeys["B"]
}