From 68b29ab0213c866cc3400ab75c33aff392513c1d Mon Sep 17 00:00:00 2001 From: Josh Deprez Date: Fri, 23 Jul 2021 13:13:50 +1000 Subject: [PATCH] tidy --- engine/game.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/game.go b/engine/game.go index 5bef50b..00c1be2 100644 --- a/engine/game.go +++ b/engine/game.go @@ -16,8 +16,9 @@ type Drawer interface { // Game implements the ebiten methods using a collection of components. type Game struct { - ScreenWidth, ScreenHeight int - Components []interface{} + ScreenWidth int + ScreenHeight int + Components []interface{} } // Update calls Update on all Updater components.