We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f451df commit 23ebe85Copy full SHA for 23ebe85
README.md
@@ -6,10 +6,27 @@
6
3. Click on the + icon (Add package from git URL...)
7
4. Enter URL: https://github.com/netvoid-labs/netgate-unity.git#upm
8
9
-
10
## Dependencies
11
- NativeWebSocket ( https://github.com/endel/NativeWebSocket )
12
+## Example
13
+
14
+```
15
+void Awake()
16
+{
17
+ NetGate.Instance.OnConnected += OnConnected;
18
+}
19
20
+void Start()
21
22
+ NetGate.Instance.Connect("localhost:4555", "12345678");
23
24
25
+void OnConnected()
26
27
+ Debug.LogError("Connected");
28
29
30
31
## License
-MIT
32
+MIT
0 commit comments