diff options
Diffstat (limited to 'Client/Assembly-CSharp/IGameListHandler.cs')
-rw-r--r-- | Client/Assembly-CSharp/IGameListHandler.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/IGameListHandler.cs b/Client/Assembly-CSharp/IGameListHandler.cs new file mode 100644 index 0000000..4be55da --- /dev/null +++ b/Client/Assembly-CSharp/IGameListHandler.cs @@ -0,0 +1,8 @@ +using System; +using System.Collections.Generic; +using InnerNet; + +public interface IGameListHandler +{ + void HandleList(int totalGames, List<GameListing> availableGames); +} |