Advertisement
Guest User

InstructionStateManager

a guest
Nov 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public enum StateDictID
  2. {
  3. HasEditorTutorial
  4. }
  5.  
  6. public static Value GetState(StateDictID state)
  7. {
  8. return GetDictValue(state.ToString());
  9. }
  10.  
  11. public static void SetState(StateDictID state, Value value)
  12. {
  13. SetDictValue(state.ToString(), value);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement