20 lines
323 B
C#
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
|
|
}
|
|
}
|