20 lines
No EOL
483 B
C#
20 lines
No EOL
483 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System.Collections.Generic;
|
|
using WingsEmu.DTOs.Maps;
|
|
|
|
namespace WingsEmu.Game.Maps;
|
|
|
|
public class Map
|
|
{
|
|
public List<MapFlags> Flags { get; init; }
|
|
public IReadOnlyList<byte> Grid { get; init; }
|
|
public int MapId { get; init; }
|
|
public int Width { get; init; }
|
|
public int Height { get; init; }
|
|
public int MapVnum { get; init; }
|
|
public int MapNameId { get; init; }
|
|
public int Music { get; init; }
|
|
} |