HUDMapOptions.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //================================================================================
  2. //
  3. //================================================================================
  4. using UnityEngine;
  5. using System.Collections;
  6. //================================================================================
  7. //
  8. //================================================================================
  9. namespace ReaderRabbit
  10. {
  11. //================================================================================
  12. //
  13. //================================================================================
  14. public class HUDMapOptions : HUDCommon
  15. {
  16. //================================================================================
  17. //
  18. //================================================================================
  19. protected override void OnClick()
  20. {
  21. KishiTechUnity.KishiTechDebug.KTDebug.Instance().Log("Calling HUDMapOptions.OnClick()...");
  22. Options.Instance().Open(Map.Instance().GetParentScene());
  23. Map.Instance().HideForOptions();
  24. }
  25. } // public class HUDMapOptions : HUDCommon
  26. } // namespace ReaderRabbit