﻿using System;

namespace Gamelogic.Grids.Examples
{
	[Serializable]
	public enum PathMode
	{
		GridPath,
		EuclideanPath,
		WeightedPath
	}
}