2023-02-17 12:47:17 +03:00
|
|
|
package gx
|
|
|
|
|
2023-05-04 19:31:33 +03:00
|
|
|
// Implementing the interface type
|
|
|
|
// will call the function OnStart
|
|
|
|
// when first appear on scene BEFORE
|
|
|
|
// the OnUpdate.
|
2023-05-26 18:31:04 +03:00
|
|
|
// The v value will be get from Add function.
|
2023-05-04 19:31:33 +03:00
|
|
|
type Starter interface {
|
2023-05-26 18:31:04 +03:00
|
|
|
Start(*Engine, ...any)
|
2023-02-17 12:47:17 +03:00
|
|
|
}
|
|
|
|
|
2023-05-04 19:31:33 +03:00
|
|
|
// Implementing the interface type
|
|
|
|
// will call the function on each
|
|
|
|
// engine iteration.
|
|
|
|
type Updater interface {
|
|
|
|
Update(*Engine) error
|
2023-02-17 12:47:17 +03:00
|
|
|
}
|
|
|
|
|
2023-05-26 18:31:04 +03:00
|
|
|
// Implementing the interface type
|
|
|
|
// will call the function on deleting
|
|
|
|
// the object.
|
|
|
|
type Deleter interface {
|
|
|
|
Delete(*Engine, ...any)
|
2023-02-17 12:47:17 +03:00
|
|
|
}
|
|
|
|
|