gg/object.go

15 lines
200 B
Go
Raw Normal View History

2023-10-23 15:45:18 +03:00
package gg
2023-02-17 12:47:17 +03:00
2024-05-28 11:24:12 +03:00
// The interface must
// me implemented for all the
// in-game logic objects.
type Object interface {
Drawer
2024-05-28 11:24:12 +03:00
OnStart(Context)
OnUpdate(Context)
OnDelete(Context)
2024-06-01 16:07:28 +03:00
GetTags() TagMap
}