Skip to content

Commit

Permalink
Merge pull request #27 from edmand46/1.3.0
Browse files Browse the repository at this point in the history
update sdk
  • Loading branch information
edmand46 authored Oct 13, 2023
2 parents 1669e36 + 0d840a7 commit a8a9f6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Binary file modified Runtime/Plugins/netstandard2.0/Ragon.Client.dll
Binary file not shown.
4 changes: 4 additions & 0 deletions Runtime/Sources/RagonNetwork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ public static void Destroy(GameObject go, RagonPayload? payload = null)
public static void AddListener(IRagonPlayerJoinListener listener) => _instance._networkClient.AddListener(listener);

public static void AddListener(IRagonPlayerLeftListener listener) => _instance._networkClient.AddListener(listener);

public static void AddListener(IRagonDataListener listener) => _instance._networkClient.AddListener(listener);

public static void RemoveListener(IRagonListener listener) => _instance._networkClient.RemoveListener(listener);

Expand All @@ -296,5 +298,7 @@ public static void Destroy(GameObject go, RagonPayload? payload = null)
public static void RemoveListener(IRagonPlayerJoinListener listener) => _instance._networkClient.RemoveListener(listener);

public static void RemoveListener(IRagonPlayerLeftListener listener) => _instance._networkClient.RemoveListener(listener);

public static void RemoveListener(IRagonDataListener listener) => _instance._networkClient.RemoveListener(listener);
}
}

0 comments on commit a8a9f6c

Please sign in to comment.