summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXGameSirControl.cs
blob: 6baa681e0b206e2816b38ae694ea982fc48ed45d (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 XUtliPoolLib
{
	public interface IXGameSirControl
	{
		bool IsOpen { get; }

		void Init();

		void StartSir();

		void StopSir();

		bool IsConnected();

		int GetGameSirState();

		bool GetButton(string buttonName);

		float GetAxis(string axisName);

		void ShowGameSirDialog();
	}
}