mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-11-30 18:24:39 +01:00
39 lines
693 B
C#
39 lines
693 B
C#
|
// ReSharper disable CheckNamespace
|
|||
|
// ReSharper disable InconsistentNaming
|
|||
|
|
|||
|
using MonoMod;
|
|||
|
|
|||
|
namespace Manager.Operation;
|
|||
|
|
|||
|
public class patch_SegaBootTimer : SegaBootTimer
|
|||
|
{
|
|||
|
[MonoModReplace]
|
|||
|
public new bool IsSegaBootTime()
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
[MonoModReplace]
|
|||
|
public new int GetGotoSegaBootSec()
|
|||
|
{
|
|||
|
return 86400;
|
|||
|
}
|
|||
|
|
|||
|
[MonoModReplace]
|
|||
|
public new bool IsSegaBootNeeded()
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
[MonoModReplace]
|
|||
|
public new int GetRemainingMinutes()
|
|||
|
{
|
|||
|
return 1440;
|
|||
|
}
|
|||
|
|
|||
|
[MonoModReplace]
|
|||
|
public new bool IsCoinAcceptable()
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|