2025-04-28 15:26:51 +08:00
|
|
|
|
|
|
|
|
public interface ICameraLogic
|
|
|
|
|
{
|
2025-04-29 15:30:55 +08:00
|
|
|
bool IsGuiding { get; }
|
2025-04-29 13:16:40 +08:00
|
|
|
bool UseOrthographicMode { get; }
|
2025-04-28 15:26:51 +08:00
|
|
|
}
|
|
|
|
|
|
2025-04-29 15:30:55 +08:00
|
|
|
public static class CameraServiceLocator
|
2025-04-28 15:26:51 +08:00
|
|
|
{
|
2025-04-29 15:30:55 +08:00
|
|
|
public static ICameraLogic CameraService { get; set; }
|
|
|
|
|
}
|