remove unused args

This commit is contained in:
Jairinho 2022-03-01 18:31:30 -03:00
parent 863f76817d
commit e491e4d32e
No known key found for this signature in database
GPG Key ID: 954589B18A21D5B6

View File

@ -87,7 +87,7 @@ func (ui *UI) Draw(screen *ebiten.Image) {
screen.DrawImage(frame, operation)
}
func (ui *UI) Layout(outsideWidth, outsideHeight int) (int, int) {
func (ui *UI) Layout(int, int) (int, int) {
return Width, Height
}