2021-09-01 15:25:26 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Generator.Models.Output.Difficulty
|
2021-08-12 16:52:06 +01:00
|
|
|
|
{
|
|
|
|
|
public class Difficulty
|
|
|
|
|
{
|
|
|
|
|
public DifficultySettings easy { get; set; }
|
|
|
|
|
public DifficultySettings normal { get; set; }
|
|
|
|
|
public DifficultySettings hard { get; set; }
|
|
|
|
|
public DifficultySettings impossible { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DifficultySettings
|
|
|
|
|
{
|
2021-09-01 15:25:26 +01:00
|
|
|
|
public Dictionary<string, object> Lay { get; set; }
|
|
|
|
|
public Dictionary<string, object> Aiming { get; set; }
|
|
|
|
|
public Dictionary<string, object> Look { get; set; }
|
|
|
|
|
public Dictionary<string, object> Shoot { get; set; }
|
|
|
|
|
public Dictionary<string, object> Move { get; set; }
|
|
|
|
|
public Dictionary<string, object> Grenade { get; set; }
|
|
|
|
|
public Dictionary<string, object> Change { get; set; }
|
|
|
|
|
public Dictionary<string, object> Cover { get; set; }
|
|
|
|
|
public Dictionary<string, object> Patrol { get; set; }
|
|
|
|
|
public Dictionary<string, object> Hearing { get; set; }
|
|
|
|
|
public Dictionary<string, object> Mind { get; set; }
|
|
|
|
|
public Dictionary<string, object> Boss { get; set; }
|
|
|
|
|
public Dictionary<string, object> Core { get; set; }
|
|
|
|
|
public Dictionary<string, object> Scattering { get; set; }
|
2021-08-12 16:52:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|