diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XAttrOtherFile.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XAttrOtherFile.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XAttrOtherFile.cs b/Client/Assets/Scripts/XMainClient/XAttrOtherFile.cs new file mode 100644 index 00000000..935bb6e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XAttrOtherFile.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XAttrOtherFile : XAttrCommonFile
+ {
+ public override string FileName
+ {
+ get
+ {
+ return "ItemNew/OtherAttrPanel";
+ }
+ }
+ }
+}
|