19 lines
560 B
C#
19 lines
560 B
C#
|
// Copyright (c) Pixel Crushers. All rights reserved.
|
||
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace PixelCrushers.DialogueSystem.Demo.Wrappers
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// This wrapper class keeps references intact if you switch between the
|
||
|
/// compiled assembly and source code versions of the original class.
|
||
|
/// </summary>
|
||
|
[AddComponentMenu("Pixel Crushers/Dialogue System/Actor/Demo/Simple Controller")]
|
||
|
[RequireComponent(typeof(CharacterController))]
|
||
|
public class SimpleController : PixelCrushers.DialogueSystem.Demo.SimpleController
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|