Files
a301_game_server/internal/player/stats.go
2026-02-26 17:52:48 +09:00

15 lines
206 B
Go

package player
// Stats holds combat-related attributes.
type Stats struct {
HP int32
MaxHP int32
MP int32
MaxMP int32
Str int32
Dex int32
Int int32
Level int32
Exp int64
}