summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Guild/XGuildLogBossMVP.cs
blob: 80b2de6a31b98374a8dc68659130fa33d9a4644a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;

namespace XMainClient
{
	internal class XGuildLogBossMVP : XGuildLogBase
	{
		public XGuildLogBossMVP()
		{
			this.eType = GuildLogType.GLT_MVP;
		}

		public override string GetContent()
		{
			return XLabelSymbolHelper.FormatName(this.name, this.uid, "00ffff") + XStringDefineProxy.GetString("GUILD_LOG_MVP");
		}

		public override void Recycle()
		{
			base.Recycle();
			XDataPool<XGuildLogBossMVP>.Recycle(this);
		}
	}
}