summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/GuildJockerMatchView.cs
blob: 6031f5013c07c32eb517027bc648b5e2d1fad300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class GuildJockerMatchView<T> : DlgBase<T, XGuildJokerBehaviour> where T : IXUIDlg, new()
	{
		public override string fileName
		{
			get
			{
				return "Guild/GuildSystem/GuildJokerMatchDlg";
			}
		}
	}
}