mirror of
https://github.com/yeslayla/golang-game-framework.git
synced 2025-01-18 04:43:17 +01:00
8 lines
93 B
Go
8 lines
93 B
Go
|
package node
|
||
|
|
||
|
type INode interface {
|
||
|
GetName() string
|
||
|
Update() error
|
||
|
ready(INode) error
|
||
|
}
|