9 lines
233 B
C#
9 lines
233 B
C#
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace Mirror.Examples.Common.Controllers.Flyer
|
|||
|
|
{
|
|||
|
|
[AddComponentMenu("")]
|
|||
|
|
[RequireComponent(typeof(NetworkTransformUnreliable))]
|
|||
|
|
public class FlyerControllerUnreliable : FlyerControllerBase { }
|
|||
|
|
}
|