Rearranged the source files and removed the makefile. To build run: go build ./...

This commit is contained in:
lmika 2015-01-03 10:37:15 +11:00
parent b187b05812
commit ea0b8e933c
5 changed files with 3 additions and 3 deletions

View file

@ -7,10 +7,10 @@ package main
/**
* An abstract model interface.
*/
type IModel interface (
type Model interface {
/**
* The dimensions of the model (width, height).
*/
GetDimensions() (int, int)
)
}

View file