11 lines
213 B
C#
11 lines
213 B
C#
|
|
using UnityEngine;
|
|||
|
|
using System.Collections;
|
|||
|
|
using HedgehogTeam.EasyTouch;
|
|||
|
|
|
|||
|
|
public class UICompatibility : MonoBehaviour {
|
|||
|
|
|
|||
|
|
public void SetCompatibility(bool value){
|
|||
|
|
EasyTouch.SetUICompatibily( value);
|
|||
|
|
}
|
|||
|
|
}
|