From 42102ca18ada58678555d4946bf28dd31ea55cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artem=20Ko=C5=A1ilinsky?= <46756889+ITeMbI4@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:09:13 +0200 Subject: [PATCH] Delete SCPSpeech.cs --- SCPSpeech.cs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 SCPSpeech.cs diff --git a/SCPSpeech.cs b/SCPSpeech.cs deleted file mode 100644 index 3881697..0000000 --- a/SCPSpeech.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Smod2; -using Smod2.Attributes; - -namespace SCP_Speech -{ - [PluginDetails( - author = "TeMbI4", - name = "SCP Speech", - description = "Allow certain SCP to speak with other classes.", - id = "TeMbI4.SCP.Speech", - version = "1.0", - SmodMajor = 3, - SmodMinor = 8, - SmodRevision = 4 - )] - public class SCPSpeech : Plugin - { - public static SCPSpeech plugin; - - public override void OnEnable() { this.Info("SCP Speech has loaded :D"); } - public override void OnDisable() { this.Info("SCP Speech has been unloaded"); } - - public override void Register() - { - this.AddEventHandlers(new EventHandler(this)); - - this.AddConfig(new Smod2.Config.ConfigSetting("sp_disabled", false, true, "Is plugin enabled?")); - } - } -}