fix(Examples): Typo in ControllerUIBase name

This commit is contained in:
MrGadget 2024-10-24 02:03:14 -04:00
parent 74a430f647
commit 01b9260768
7 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ namespace Mirror.Examples.Common.Controllers
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class ContollerUIBase : MonoBehaviour
public class ControllerUIBase : MonoBehaviour
{
// Returns a string representation of a KeyCode that is more suitable

View File

@ -6,7 +6,7 @@ namespace Mirror.Examples.Common.Controllers.Flyer
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class FlyerControllerUI : ContollerUIBase
public class FlyerControllerUI : ControllerUIBase
{
[Serializable]
public struct MoveTexts

View File

@ -6,7 +6,7 @@ namespace Mirror.Examples.Common.Controllers.Player
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class PlayerControllerUI : ContollerUIBase
public class PlayerControllerUI : ControllerUIBase
{
[Serializable]
public struct MoveTexts

View File

@ -6,7 +6,7 @@ namespace Mirror.Examples.Common.Controllers.Player
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class PlayerControllerRBUI : ContollerUIBase
public class PlayerControllerRBUI : ControllerUIBase
{
[Serializable]
public struct MoveTexts

View File

@ -6,7 +6,7 @@ namespace Mirror.Examples.Common.Controllers.Tank
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class TankControllerUI : ContollerUIBase
public class TankControllerUI : ControllerUIBase
{
[Serializable]
public struct MoveTexts

View File

@ -6,7 +6,7 @@ namespace Mirror.Examples.Common.Controllers.Tank
{
[AddComponentMenu("")]
[DisallowMultipleComponent]
public class TurretUI : ContollerUIBase
public class TurretUI : ControllerUIBase
{
[Serializable]
public struct MoveTexts