-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogFrameworkVersionPlugin.cs
More file actions
44 lines (34 loc) · 922 Bytes
/
LogFrameworkVersionPlugin.cs
File metadata and controls
44 lines (34 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using IllusionPlugin;
namespace SC_NewEngine_Mod
{
// IEnhancedPlugin doesn't work, see https://github.com/Eusth/IPA/pull/11
class LogFrameworkVersionPlugin : IPlugin
{
public string[] Filter => new string[] {"Sakura Clicker.exe"};
public string Name => "LogFrameworkVersion Plugin";
public string Version => "trivial";
public void OnApplicationQuit()
{
}
public void OnApplicationStart()
{
Console.WriteLine("LogFrameworkVersionPlugin: Running on Framework {0}", Environment.Version);
}
public void OnFixedUpdate()
{
}
public void OnLateUpdate()
{
}
public void OnLevelWasInitialized(int level)
{
}
public void OnLevelWasLoaded(int level)
{
}
public void OnUpdate()
{
}
}
}