mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
13 lines
299 B
C#
13 lines
299 B
C#
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace QSB.Utility;
|
|
|
|
public interface ICommonCameraAPI
|
|
{
|
|
void RegisterCustomCamera(OWCamera OWCamera);
|
|
(OWCamera, Camera) CreateCustomCamera(string name);
|
|
UnityEvent<PlayerTool> EquipTool();
|
|
UnityEvent<PlayerTool> UnequipTool();
|
|
}
|