11 lines
197 B
C#
11 lines
197 B
C#
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
public class DialogYesNo : MonoBehaviour {
|
|||
|
|
|
|||
|
|
#if GLOBAL_VERSION || UNITY_IOS
|
|||
|
|
void Awake(){
|
|||
|
|
transform.SetLocalPositionX(-transform.localPosition.x);
|
|||
|
|
}
|
|||
|
|
#endif
|
|||
|
|
}
|