-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
32 additions
and
60 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
Fika.Core/Modding/Events/FikaNetworkManagerCreatedEvent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Fika.Core.Networking; | ||
|
||
namespace Fika.Core.Modding.Events | ||
{ | ||
public class FikaNetworkManagerCreatedEvent : FikaEvent | ||
{ | ||
public IFikaNetworkManager Manager { get; } | ||
|
||
internal FikaNetworkManagerCreatedEvent(IFikaNetworkManager manager) | ||
{ | ||
Manager = manager; | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
Fika.Core/Modding/Events/FikaNetworkManagerDestroyedEvent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Fika.Core.Networking; | ||
|
||
namespace Fika.Core.Modding.Events | ||
{ | ||
public class FikaNetworkManagerDestroyedEvent : FikaEvent | ||
{ | ||
public IFikaNetworkManager Manager { get; } | ||
|
||
public FikaNetworkManagerDestroyedEvent(IFikaNetworkManager server) | ||
{ | ||
Manager = server; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters