6 lines
77 B
Go
6 lines
77 B
Go
package game
|
|
|
|
type Position3D interface {
|
|
GetPosition() (x, y, z float64)
|
|
}
|