mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-04 04:14:34 +00:00
14 lines
235 B
C#
14 lines
235 B
C#
namespace FishNet.Component.Prediction
|
|
{
|
|
|
|
public sealed class NetworkTrigger : NetworkCollider
|
|
{
|
|
protected override void Awake()
|
|
{
|
|
base.IsTrigger = true;
|
|
base.Awake();
|
|
}
|
|
|
|
}
|
|
|
|
} |