12 lines
244 B
Go
12 lines
244 B
Go
package entities
|
|
|
|
import (
|
|
"joylink.club/ecs"
|
|
"joylink.club/rtsssimulation/system"
|
|
)
|
|
|
|
// 双机zdj9
|
|
func CreateSwitch2jzdj9Entity(w ecs.World) *ecs.Entry {
|
|
return w.Create(system.EntityIdentityComponent, system.Switch2jZdj9StateComponent)
|
|
}
|