Make basecomp not use pointer receiver

This commit is contained in:
bloeys
2023-10-06 04:09:57 +04:00
parent c1d5033eb0
commit 201d9546b2

View File

@ -8,7 +8,7 @@ type BaseComp struct {
Entity *Entity
}
func (b *BaseComp) baseComp() {
func (b BaseComp) baseComp() {
}
func (b *BaseComp) Init(parent *Entity) {