22 lines
467 B
C#
Raw Normal View History

2015-06-10 11:49:43 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2015-06-17 14:06:54 +03:00
using TransportGame.Primitives;
2015-06-10 11:49:43 +03:00
namespace TransportGame.Model
{
public class Building
{
/// <summary>
/// From lowest to highest level
/// </summary>
public Polygon[][] Polygons { get; set; }
/// <summary>
/// From lowest to highest level
/// </summary>
public float[] LevelHeights { get; set; }
}
}