Class ValueHistorySaveData<T>
Container for saving and loading ValueHistory<T> objects of serializable types.
Inheritance
object
ValueHistorySaveData<T>
Namespace: AS2
Assembly: .dll
Syntax
[Serializable]
public class ValueHistorySaveData<T>
Type Parameters
Name | Description |
---|---|
T | The type of data stored in the history. |
Fields
| Edit this page View SourcelastRound
The last recorded round.
Declaration
public int lastRound
Field Value
Type | Description |
---|---|
int |
rounds
The list of rounds in which the values have changed.
Declaration
public List<int> rounds
Field Value
Type | Description |
---|---|
List<int> |
values
The list of all different values stored in the history.
Declaration
public List<T> values
Field Value
Type | Description |
---|---|
List<T> |