forked from Shardstone/trail-into-darkness
11 lines
209 B
C#
11 lines
209 B
C#
using UnityEngine;
|
|
|
|
namespace Nox.Game {
|
|
public interface ICameraController {
|
|
CameraReference CameraReference {get;}
|
|
void Initialize();
|
|
void Tick();
|
|
void Dispose();
|
|
}
|
|
}
|