summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XAssociatedCamera.cs
blob: b1d097947204097e93da0de0692f12a85054aa8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using UnityEngine;
using XUtliPoolLib;

namespace XMainClient
{
	public class XAssociatedCamera : IAssociatedCamera, IXInterface
	{
		public bool Deprecated { get; set; }

		public Camera Get()
		{
			return XSingleton<XScene>.singleton.AssociatedCamera;
		}
	}
}