Files
vRp.CD2g_test/game/item.go
2023-05-10 11:33:17 +08:00

11 lines
315 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package game
type Item[ID comparable] interface {
// GetID 获取物品ID
GetID() ID
// GetGUID 获取物品GUID
// - 用于标识同一件物品不同的特征
// - 负数的GUID在内置功能中可能会被用于特殊判定如果需要负数建议另外对特殊功能进行实现
GetGUID() int64
}