mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-02-16 02:32:39 +01:00
21 lines
570 B
C#
21 lines
570 B
C#
|
// ReSharper disable CheckNamespace
|
|||
|
// ReSharper disable InconsistentNaming
|
|||
|
|
|||
|
using MonoMod;
|
|||
|
using Process;
|
|||
|
|
|||
|
namespace Manager;
|
|||
|
|
|||
|
public class patch_PowerOnProcess : PowerOnProcess
|
|||
|
{
|
|||
|
#pragma warning disable CS0414 // Field is assigned but its value is never used
|
|||
|
[MonoModIgnore]
|
|||
|
private float _waitTime;
|
|||
|
#pragma warning restore CS0414 // Field is assigned but its value is never used
|
|||
|
|
|||
|
[MonoModConstructor]
|
|||
|
public patch_PowerOnProcess(ProcessDataContainer dataContainer) : base(dataContainer)
|
|||
|
{
|
|||
|
_waitTime = 0f;
|
|||
|
}
|
|||
|
}
|