12 lines
168 B
Go
12 lines
168 B
Go
package component
|
|
|
|
import "joylink.club/ecs"
|
|
|
|
// PscType 中央控制盘
|
|
var PscType = ecs.NewComponentType[Psc]()
|
|
|
|
type Psc struct {
|
|
Mkx *ecs.Entry
|
|
Psd *ecs.Entry
|
|
}
|