mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 05:18:21 +00:00
Make basecomp not use pointer receiver
This commit is contained in:
@ -8,7 +8,7 @@ type BaseComp struct {
|
||||
Entity *Entity
|
||||
}
|
||||
|
||||
func (b *BaseComp) baseComp() {
|
||||
func (b BaseComp) baseComp() {
|
||||
}
|
||||
|
||||
func (b *BaseComp) Init(parent *Entity) {
|
||||
|
||||
Reference in New Issue
Block a user