14 lines
266 B
C#
14 lines
266 B
C#
namespace seraph.Seraph.Infect;
|
|
|
|
public class Infect : Service
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
Console.WriteLine("Infection Initialized.");
|
|
}
|
|
|
|
public override void Execute()
|
|
{
|
|
Console.WriteLine("Infection Running.");
|
|
}
|
|
} |