Files
vRp.CD2g_test/toolkit/ecs/component.go
2024-04-10 19:08:07 +08:00

9 lines
147 B
Go

package ecs
type ComponentId = int
// Component 组件是一个数据结构,它包含了一些数据
type Component struct {
id ComponentId
}