Skip to content

Commit

Permalink
Add missing base class declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Jul 1, 2024
1 parent b5c69d7 commit 6cb9e21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using MonkeyLoader.Events;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
Expand All @@ -11,7 +12,7 @@ namespace MonkeyLoader.Resonite.Events
/// Abstract base class for all sorts of cancelable events that focus on adding a (sorted) list of unique items.
/// </summary>
/// <typeparam name="T">The type of the items.</typeparam>
public abstract class CancelableSortedItemsEvent<T>
public abstract class CancelableSortedItemsEvent<T> : CancelableSyncEvent
{
/// <summary>
/// The items that have been added to the event.
Expand Down
5 changes: 3 additions & 2 deletions MonkeyLoader.Resonite.Integration/Events/SortedItemsEvent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using MonkeyLoader.Events;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
Expand All @@ -11,7 +12,7 @@ namespace MonkeyLoader.Resonite.Events
/// Abstract base class for all sorts of events that focus on adding a (sorted) list of unique items.
/// </summary>
/// <typeparam name="T">The type of the items.</typeparam>
public abstract class SortedItemsEvent<T>
public abstract class SortedItemsEvent<T> : SyncEvent
{
/// <summary>
/// The items that have been added to the event.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageId>MonkeyLoader.GamePacks.Resonite</PackageId>
<Title>Resonite Game Pack</Title>
<Authors>Banane9, Nytra</Authors>
<Version>0.16.3-beta</Version>
<Version>0.16.4-beta</Version>
<Description>
This Game Pack for MonkeyLoader provides basic hooks for modding the game Resonite,
which uses FrooxEngine. It provides hooks for the beginning of initialization,
Expand Down

0 comments on commit 6cb9e21

Please sign in to comment.