-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sealed classes, refactored code, added more debugs, better errors. (#22)
- Loading branch information
Ryan Gregory
authored
Jan 30, 2024
1 parent
b5c10fa
commit fca4160
Showing
11 changed files
with
254 additions
and
105 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace LethalNetworkAPI; | ||
|
||
/// <summary> | ||
/// Internal Class | ||
/// Internal class. | ||
/// </summary> | ||
public abstract class LNetworkEvent(string identifier) : LethalNetwork($"evt.{identifier}"); | ||
public abstract class LNetworkEvent(string identifier) : LethalNetwork($"evt.{identifier}", "Event"); |
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace LethalNetworkAPI; | ||
|
||
/// <summary> | ||
/// Internal Class | ||
/// Internal class. | ||
/// </summary> | ||
public abstract class LNetworkMessage(string identifier) : LethalNetwork($"msg.{identifier}"); | ||
public abstract class LNetworkMessage(string identifier) : LethalNetwork($"msg.{identifier}", "Message"); |
Oops, something went wrong.