package objs import ( "github.com/Zyko0/go-sdl3/sdl" "ponger/ecs" ) type Paddle struct { *ecs.GameObject } func NewPaddle() ecs.IsGameObject { p := &Paddle{ GameObject: &ecs.GameObject{ Position: sdl.FPoint{}, Children: nil, }, } return p }