summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XOutlookState.cs
blob: 1911a73cc30c0a47002b583f2502b059dd299d8c (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
26
27
28
29
30
using System;
using KKSG;

namespace XMainClient
{
	internal class XOutlookState
	{
		public bool bMounted
		{
			get
			{
				return this.type == OutLookStateType.OutLook_RidePet || this.type == OutLookStateType.OutLook_RidePetCopilot;
			}
		}

		public bool bDancing
		{
			get
			{
				return this.type == OutLookStateType.OutLook_Dance;
			}
		}

		public OutLookStateType type;

		public uint param;

		public ulong paramother;
	}
}