Created
December 17, 2018 22:30
-
-
Save jesterswilde/35516d6927304cf5b150f41a2167ddb7 to your computer and use it in GitHub Desktop.
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 TimedState | |
{ | |
SeriealizedState data; | |
ITimed timed; | |
public ITimed Target { get { return timed; } } | |
public SeriealizedState Data { get { return data; } } | |
public TimedState(ITimed timedObject, SeriealizedState serialized) | |
{ | |
timed = timedObject; | |
data = serialized; | |
} | |
} | |
public abstract class SeriealizedState | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment