mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
14 lines
356 B
C#
14 lines
356 B
C#
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace NewHorizons.OtherMods.CommonCameraUtility
|
|
{
|
|
public interface ICommonCameraAPI
|
|
{
|
|
void RegisterCustomCamera(OWCamera OWCamera);
|
|
(OWCamera, Camera) CreateCustomCamera(string name);
|
|
UnityEvent<PlayerTool> EquipTool();
|
|
UnityEvent<PlayerTool> UnequipTool();
|
|
}
|
|
}
|