﻿using UnityEngine;

namespace Gamelogic.Grids.Examples
{
	public class Player : GLMonoBehaviour
	{
		public void OnTriggerEnter(Collider other)
		{
			if (other.tag == "Coin")
			{
				Debug.Log("The player has walked into a coin");
			}
		}
	}
}