mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 20:59:51 +03:00
13 lines
157 B
Go
13 lines
157 B
Go
|
package ui
|
||
|
|
||
|
import (
|
||
|
"mvvasilev/last_light/util"
|
||
|
|
||
|
"github.com/google/uuid"
|
||
|
)
|
||
|
|
||
|
type UIElement interface {
|
||
|
UniqueId() uuid.UUID
|
||
|
Position() util.Position
|
||
|
}
|