12 lines
193 B
Go
12 lines
193 B
Go
|
package component
|
||
|
|
||
|
import "joylink.club/ecs"
|
||
|
|
||
|
// GasEnvironment 气体环境
|
||
|
type GasEnvironment struct {
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
GasEnvironmentType = ecs.NewComponentType[GasEnvironment]() //气体环境
|
||
|
)
|