Files
gorpg/konstructor/kcontext.go
2023-07-04 22:32:13 +02:00

12 lines
153 B
Go

package konstructor
type KContextScreen struct {
Type string
Value string
}
type KContext struct {
Screen KContextScreen
CurrentLevel int
}