12 lines
153 B
Go
12 lines
153 B
Go
package konstructor
|
|
|
|
type KContextScreen struct {
|
|
Type string
|
|
Value string
|
|
}
|
|
|
|
type KContext struct {
|
|
Screen KContextScreen
|
|
CurrentLevel int
|
|
}
|