﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Nostalgia.Example
{
	public interface IActionTrigger
	{
		void OnEnter(Player player);
		void OnExit(Player player);
		void OnAction(Player player);
	}
}