mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
439 B
C#
17 lines
439 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class TerrainDesc : IUnpackable
|
|
{
|
|
public List<TerrainType> TerrainTypes { get; } = new List<TerrainType>();
|
|
public LandSurf LandSurfaces { get; } = new LandSurf();
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
TerrainTypes.Unpack(reader);
|
|
LandSurfaces.Unpack(reader);
|
|
}
|
|
}
|
|
}
|