11 lines
153 B
C#
11 lines
153 B
C#
using UnityEngine;
|
|
|
|
public interface IAquariumCamera
|
|
{
|
|
GameObject gameObject { get; }
|
|
|
|
void AttachToFish(SchoolChild fish);
|
|
|
|
void DetachFromFish();
|
|
}
|