chore: add HandType type

This commit is contained in:
Eli Yip 2025-05-27 15:25:25 +08:00
parent 566cfc2cbf
commit 1f572263cb
No known key found for this signature in database
GPG Key ID: C98B69D4CF7D7EC5

View File

@ -1,4 +1,8 @@
package define
const HAND_TYPE_LEFT = 0x28
const HAND_TYPE_RIGHT = 0x27
type HandType int
const (
HAND_TYPE_LEFT HandType = 0x28
HAND_TYPE_RIGHT HandType = 0x27
)