r2mods/ilspy_dump/ror2_csproj/RoR2/ICameraStateProvider.cs

13 lines
350 B
C#

namespace RoR2;
public interface ICameraStateProvider
{
void GetCameraState(CameraRigController cameraRigController, ref CameraState cameraState);
bool IsUserLookAllowed(CameraRigController cameraRigController);
bool IsUserControlAllowed(CameraRigController cameraRigController);
bool IsHudAllowed(CameraRigController cameraRigController);
}