mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
57 lines
1.0 KiB
C#
57 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NewHorizons.Components
|
|
{
|
|
public class ShipLogStarChartMode : ShipLogMode
|
|
{
|
|
public override bool AllowCancelInput()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool AllowModeSwap()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override void EnterMode(string entryID = "", List<ShipLogFact> revealQueue = null)
|
|
{
|
|
|
|
}
|
|
|
|
public override void ExitMode()
|
|
{
|
|
|
|
}
|
|
|
|
public override string GetFocusedEntryID()
|
|
{
|
|
return "0";
|
|
}
|
|
|
|
public override void Initialize(ScreenPromptList centerPromptList, ScreenPromptList upperRightPromptList, OWAudioSource oneShotSource)
|
|
{
|
|
|
|
}
|
|
|
|
public override void OnEnterComputer()
|
|
{
|
|
|
|
}
|
|
|
|
public override void OnExitComputer()
|
|
{
|
|
|
|
}
|
|
|
|
public override void UpdateMode()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|