Newer
Older
Dreamsturbia-Project-IADE-Unity3D / Assets / Scripts / Enemies / ILookAround.cs
@Rackday Rackday on 21 Aug 197 bytes Project Added
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface ILookAround
{
    GameObject isObserving { get; }
    void Looking(GameObject source,bool state);
}