blob: ed102f3c5b127296c7adfe27ba4ab575aff48273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace XMainClient
{
internal class XAttrPlayerFile : XAttrCommonFile
{
public override string FileName
{
get
{
return "ItemNew/AttrPanel";
}
}
}
}
|