CodingLand/pkg/internal/land/object_interactable.go
2024-07-18 17:46:36 +08:00

8 lines
124 B
Go

package land
type InteractableObject interface {
GetPosition() Vector2D
GetSize() Vector2D
OnClick(mousePos Vector2D)
}