1
0
oop-2-labs/L1/LD_24/Code/MapTile.cs

20 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace LD_24.Code
{
/// <summary>
/// Enum for storing the type of each tile in a map
/// </summary>
public enum MapTile
{
Empty,
Wall,
Friend,
Pizzeria,
MeetingSpot
}
}