mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-11-27 17:10:48 +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;
|
|
}
|
|
} |