Created
December 17, 2018 21:45
-
-
Save jesterswilde/b9ae09f82b2a82e37d83b07fdf90a519 to your computer and use it in GitHub Desktop.
Time TraveL Action Class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Action | |
{ | |
System.Object value; | |
public System.Object Value { get { return value; } } | |
ActionEnum type; | |
public ActionEnum Type { get { return type; } } | |
ITimed timed; | |
public ITimed Timed{get{return timed;}} | |
public Action(ITimed timedObj, ActionEnum actionEnum, System.Object valueToStore = null){ | |
value = valueToStore; | |
type = actionEnum; | |
timed = timedObj; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment