示例#1
0
文件: Bot.cs 项目: ommzi-dev/5-Games
    /// <summary>
    /// Change the adaptation of the last configuration stored.
    /// </summary>
    public void SetLastMovement(float value)
    {
        BoardConfiguration bc = configList[configList.Count - 1];

        bc.SetLastValue(value);
        configList[configList.Count - 1] = bc;
    }