Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/13 16:01:05 (11 years ago)
Author:
ascheibe
Message:

#2069 added a view for displaying/reloading enemies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/BestSolutionAnalyzer.cs

    r9947 r9971  
    6565      get { return (ILookupParameter<IntValue>)Parameters[NrOfRoundsParameterName]; }
    6666    }
    67     public ILookupParameter<ICheckedItemList<StringValue>> EnemiesParameter {
    68       get { return (ILookupParameter<ICheckedItemList<StringValue>>)Parameters[EnemiesParameterName]; }
     67    public ILookupParameter<EnemyCollection> EnemiesParameter {
     68      get { return (ILookupParameter<EnemyCollection>)Parameters[EnemiesParameterName]; }
    6969    }
    7070    #endregion
     
    8282      Parameters.Add(new LookupParameter<DirectoryValue>(RobocodePathParamaterName, "Path of the Robocode installation."));
    8383      Parameters.Add(new LookupParameter<IntValue>(NrOfRoundsParameterName, "Nr. of Rounds a Robot has to fight against each opponent."));
    84       Parameters.Add(new LookupParameter<ICheckedItemList<StringValue>>(EnemiesParameterName, "The enemies that should be battled."));
     84      Parameters.Add(new LookupParameter<EnemyCollection>(EnemiesParameterName, "The enemies that should be battled."));
    8585    }
    8686
Note: See TracChangeset for help on using the changeset viewer.