Time TraveL Action Class
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