1 using System.Collections.Generic;
4 namespace droid.Runtime.Messaging.Messages {
9 Dictionary<string, IActor> actors,
10 Dictionary<string, IConfigurable> configurables,
11 float solved_threshold) {
12 this.Configurables = configurables;
14 this.MaxSteps = max_steps;
16 this.SolvedThreshold = solved_threshold;
21 public Dictionary<string, IActor> Actors {
get; }
25 public Dictionary<string, IConfigurable> Configurables {
get; }
29 public int MaxSteps {
get; }
33 public float SolvedThreshold {
get; }
EnvironmentDescription(int max_steps, Dictionary< string, IActor > actors, Dictionary< string, IConfigurable > configurables, float solved_threshold)