using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HexTiles { /// /// Side piece for the hex tile. /// [Serializable] internal struct SidePiece { public int direction; public float elevationDelta; } }