aboutsummaryrefslogtreecommitdiff
path: root/client/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/state.go')
-rw-r--r--client/state.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/client/state.go b/client/state.go
deleted file mode 100644
index 9565efc..0000000
--- a/client/state.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package client
-
-import (
- "shell-game-launcher/config"
-)
-
-type State struct {
- config *config.Config
- currentMenu string
- login string
-}
-
-func NewState(config *config.Config, login string) *State {
- cs := State{
- config: config,
- currentMenu: "anonymous",
- login: login,
- }
- if login != "" {
- cs.currentMenu = "logged_in"
- }
- return &cs
-}