123456789101112131415161718192021222324252627282930313233 |
- //================================================================================
- //
- //================================================================================
- using UnityEngine;
- using System.Collections;
- //================================================================================
- //
- //================================================================================
- namespace ReaderRabbit
- {
- //================================================================================
- //
- //================================================================================
- public class HUDMapOptions : HUDCommon
- {
- //================================================================================
- //
- //================================================================================
- protected override void OnClick()
- {
- KishiTechUnity.KishiTechDebug.KTDebug.Instance().Log("Calling HUDMapOptions.OnClick()...");
- Options.Instance().Open(Map.Instance().GetParentScene());
- Map.Instance().HideForOptions();
- }
- } // public class HUDMapOptions : HUDCommon
- } // namespace ReaderRabbit
|