summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-07-10 22:13:48 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-07-10 22:13:48 +0200 |
commit | 7b891ce04190365080fb4ef5d8dac68528a81af1 (patch) | |
tree | 78f332b074723167bde91b46929e450c8c6049c9 /src/battlemap | |
parent | f63602557a2f7320a7e02a3bf7dd9b339efaf4d1 (diff) |
Still working on it...
Diffstat (limited to 'src/battlemap')
-rw-r--r-- | src/battlemap/src/Struct/UI.elm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/battlemap/src/Struct/UI.elm b/src/battlemap/src/Struct/UI.elm index 447cfc4..c8ef91e 100644 --- a/src/battlemap/src/Struct/UI.elm +++ b/src/battlemap/src/Struct/UI.elm @@ -21,7 +21,6 @@ module Struct.UI exposing -- Manual Controls has_manual_controls_enabled, -- Previous Action - has_focus, get_previous_action, set_previous_action ) @@ -129,9 +128,6 @@ set_enable_manual_controls : Bool -> Type -> Type set_enable_manual_controls val ui = {ui | show_manual_controls = val} -- Previous Action ------------------------------------------------------------- -has_focus : Type -> Bool -has_focus ui = True - set_previous_action : (Maybe Action) -> Type -> Type set_previous_action act ui = {ui | previous_action = act} |