9 lines
262 B
C#
9 lines
262 B
C#
using UnityEngine;
|
|
|
|
namespace Mirror.Examples.Common.Controllers.Player
|
|
{
|
|
[AddComponentMenu("Network/Player Controller (Hybrid)")]
|
|
[RequireComponent(typeof(NetworkTransformHybrid))]
|
|
public class PlayerControllerHybrid : PlayerControllerBase { }
|
|
}
|