blob: b0f36d5c96cd8d065a09df0f23ae09dfcb198edd (
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 XGuildLogLeave : XGuildLogBase
{
public XGuildLogLeave()
{
this.eType = GuildLogType.GLT_LEAVE;
}
public override string GetContent()
{
return XLabelSymbolHelper.FormatName(this.name, this.uid, "00ffff") + XStringDefineProxy.GetString("GUILD_LOG_LEAVE");
}
public override void Recycle()
{
base.Recycle();
XDataPool<XGuildLogLeave>.Recycle(this);
}
}
}
|