mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 20:59:51 +03:00
12 lines
194 B
Go
12 lines
194 B
Go
package model
|
|
|
|
import (
|
|
"mvvasilev/last_light/game/model"
|
|
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
type LogicSnippet[T model.Entity] interface {
|
|
Input(e *tcell.EventKey)
|
|
Tick(dt int64, entity T)
|
|
}
|