summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ILogData.cs
blob: 3efde7a2791f84f5df27dbfe46a36aa37ee24621 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace XMainClient
{
	internal interface ILogData : IComparable<ILogData>
	{
		string GetContent();

		string GetTime();
	}
}