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

namespace XMainClient
{
	internal class ShowSettingArgs
	{
		public int position = 0;

		public bool anim = true;

		public bool showsettings = true;

		public bool enablebackclick = true;

		public bool enabledrag = true;

		public bool needforceshow = false;

		public bool forceshow = true;

		public int depth = 0;

		public bool needdepth = false;
	}
}