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

namespace XUtliPoolLib
{
	public class XEngineObject
	{
		protected GameObject m_GameObject = null;

		protected GameObject m_Parent = null;

		public string m_Location = "";
	}
}