Rearranged the source files and removed the makefile. To build run: go build ./...
This commit is contained in:
parent
b187b05812
commit
ea0b8e933c
|
|
@ -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)
|
||||
)
|
||||
}
|
||||
Loading…
Reference in a new issue