using UnityEngine; namespace VOID.Generic.Triggers { /// /// This interface allow camera's dummy to call and .
/// Implementing component need to be placed on layer: .
/// Setting 's to true is required!
///
public interface ICameraTrigger { public void OnCameraEnter(); public void OnCameraExit(); } }