This commit is contained in:
JustArchi
2019-01-17 18:50:14 +01:00
parent 014047eb79
commit 371de1ec40

View File

@@ -155,6 +155,9 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin {
// If you do not have any global structures to initialize, you can leave this function empty
// At this point you can access core ASF's functionality, such as logging or a web browser
// Once all plugins execute their OnLoaded() methods, OnASFInit() will be called next
public void OnLoaded() { }
public void OnLoaded() {
ASF.ArchiLogger.LogGenericInfo("Hey! Thanks for checking if our example plugin works fine, this is a confirmation that indeed OnLoaded() method was called!");
ASF.ArchiLogger.LogGenericInfo("Good luck in whatever you're doing!");
}
}
}