CodingLand/pkg/internal/land/object_interactable.go

8 lines
124 B
Go
Raw Normal View History

2024-07-18 09:46:36 +00:00
package land
type InteractableObject interface {
GetPosition() Vector2D
GetSize() Vector2D
OnClick(mousePos Vector2D)
}