mirror of
https://github.com/BigJk/end_of_eden.git
synced 2026-02-06 10:48:09 +00:00
13 lines
200 B
Go
13 lines
200 B
Go
package game
|
|
|
|
import (
|
|
"github.com/BigJk/end_of_eden/internal/lua/luhelp"
|
|
)
|
|
|
|
type StoryTeller struct {
|
|
ID string
|
|
Active luhelp.OwnedCallback
|
|
Decide luhelp.OwnedCallback
|
|
BaseGame bool
|
|
}
|