diff --git a/streamerbot/3.api/3.csharp/3.methods/core/events/get-event-type.md b/streamerbot/3.api/3.csharp/3.methods/core/events/get-event-type.md index 661c23e7..6da99866 100644 --- a/streamerbot/3.api/3.csharp/3.methods/core/events/get-event-type.md +++ b/streamerbot/3.api/3.csharp/3.methods/core/events/get-event-type.md @@ -4,7 +4,6 @@ title: GetEventType description: Fetch the value of the `__source` variable example: | using System; - using Streamer.bot.Common.Events; // Add Events namespace public class CPHInline { diff --git a/streamerbot/3.api/3.csharp/3.methods/core/events/get-source.md b/streamerbot/3.api/3.csharp/3.methods/core/events/get-source.md index 0aca233a..724c0ff7 100644 --- a/streamerbot/3.api/3.csharp/3.methods/core/events/get-source.md +++ b/streamerbot/3.api/3.csharp/3.methods/core/events/get-source.md @@ -4,7 +4,6 @@ title: GetSource description: Fetch the value of the `eventSource` variable example: | using System; - using Streamer.bot.Common.Events; // Add Events namespace public class CPHInline { diff --git a/streamerbot/3.api/3.csharp/5.enums/event-source.md b/streamerbot/3.api/3.csharp/5.enums/event-source.md index 63fbf329..c7067e38 100644 --- a/streamerbot/3.api/3.csharp/5.enums/event-source.md +++ b/streamerbot/3.api/3.csharp/5.enums/event-source.md @@ -10,15 +10,10 @@ This enum represents the source of the event that triggered the action. ## Usage Example -::warning -To use the `EventSource` enum in your C# scripts, you must include the `Streamer.bot.Common.Events` namespace -:: - :read-more{to=/api/csharp/methods/core/events/get-source} ```csharp using System; -using Streamer.bot.Common.Events; // Add Events namespace public class CPHInline { diff --git a/streamerbot/3.api/3.csharp/5.enums/event-type.md b/streamerbot/3.api/3.csharp/5.enums/event-type.md index 3caba9df..70d4cb74 100644 --- a/streamerbot/3.api/3.csharp/5.enums/event-type.md +++ b/streamerbot/3.api/3.csharp/5.enums/event-type.md @@ -10,15 +10,10 @@ This variable is of type `EventType`{lang=cs}, which is an enumeration (enum) de ## Usage Example -::warning -To use the `EventType` enum in your C# scripts, you must include the `Streamer.bot.Common.Events` namespace -:: - :read-more{to=/api/csharp/methods/core/events/get-event-type} ```csharp [Example.cs] using System; -using Streamer.bot.Common.Events; // Add Events namespace public class CPHInline {