Add delta value between frames

This commit is contained in:
2022-10-24 06:42:58 -04:00
parent 987ef9502f
commit 9ccd2cf2cb
12 changed files with 32 additions and 23 deletions

View File

@@ -10,7 +10,7 @@ const (
type INode interface {
GetName() string
Update() error
Update(delta float64) error
ready(INode) error
IsProcessing() bool
GetProcessMode() ProcessMode