Пример #1
0
        public static void Main(string[] args)
        {
            int.TryParse(args[0], out int id);

            var level = OnlineLevel.GetLevel(id);

            Console.WriteLine(level.Title + " - " + level.ID + $" ({level.Level.ObjectCount} objs)");
        }
Пример #2
0
 public void CopyFrom(Level other)
 {
     Type        = other.Type;
     IsLocal     = other.IsLocal;
     OnlineLevel = other.OnlineLevel;
     Meta        = other.Meta;
     Record      = other.Record;
     Path        = other.Path;
 }