public int Radius { get; set; }
public int Height { get; set; }
public static void Main()
DoomActor imp = new DoomActor();
PropertyInfo[] doomActorProperties = Type.GetType("DoomActor").GetProperties();
foreach (PropertyInfo prop in doomActorProperties)
Console.WriteLine($"{prop.Name} - {prop.GetValue(imp)}");