mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
19 lines
388 B
C#
19 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityEngine.Networking;
|
|
|
|
namespace QSB {
|
|
class QSBNetworkManager: NetworkManager {
|
|
void Awake () {
|
|
}
|
|
|
|
public override void OnClientConnect (NetworkConnection conn) {
|
|
base.OnClientConnect(conn);
|
|
|
|
QSB.Log("OnClientConnect");
|
|
}
|
|
}
|
|
}
|