public static Level Deserialize(BinaryReader bs) { var level = new Level(); level.Name = bs.ReadAsciiString(); return level; }