Rearranged the source files and removed the makefile. To build run: go build ./...
This commit is contained in:
parent
b187b05812
commit
ea0b8e933c
5 changed files with 3 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue