Created
November 1, 2017 22:19
-
-
Save unity3dcollege/7f6b122e081b0cbb78116fbaefe85e98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 override List<float> CollectState() | |
{ | |
List<float> state = new List<float>(); | |
state.Add(currentNumber); | |
state.Add(targetNumber); | |
return state; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment