slight refactor, gofmt

This commit is contained in:
2019-10-26 23:32:32 +03:00
parent 32c598f9e0
commit ec9d3d9a73
20 changed files with 303 additions and 239 deletions

9
engine/types/ifaces.go Normal file
View File

@ -0,0 +1,9 @@
package types
type Renderable interface {
Render()
}
type Putable interface {
Put(x, y int, symbol interface{})
}