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

namespace XMainClient
{
	public abstract class XDataBase
	{
		public bool bRecycled = true;

		public virtual void Recycle()
		{
		}

		public virtual void Init()
		{
		}
	}
}