zworld-demo/engine/rule/render.go

12 lines
173 B
Go
Raw Normal View History

2023-12-22 22:04:27 +08:00
package rule
type FRenderRule struct {
}
func (r *FRenderRule) Tick(w IWorld, delta float32) {
}
func (r *FRenderRule) GetPriority() RulePriority {
return ERenderRule
}