Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IPositionRequest.cs
@Rackday Rackday on 29 Oct 174 bytes Major Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IPositionRequest : IObserver
{
    public void Request(NPCController npc);
}