Files
SVSimServer/SVSim.BattleEngine/Engine/BattleCamera.cs
gamer147 e3e0ba7a72 cull(engine-cleanup): pass-8 phase-2 cascade round 2
[trim] fully-unreachable files deleted: 3
[trim] files edited: 21, files deleted: 0, nodes removed: 38
[type-trim] files edited: 3, types removed: 3

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-03 21:19:36 -04:00

27 lines
344 B
C#

using UnityEngine;
using Wizard.Battle.View.Vfx;
public class BattleCamera
{
public UICamera m_CutInCamera;
public Camera Camera;
public Camera _backgroundCamera;
public BattleCamera()
{
Camera = null;
}
public Camera Get3DCamera()
{
return Camera;
}
public void Dispose()
{
Camera = null;
}
}