2025-10-03 20:00:05 +05:00

23 lines
643 B
C#

// Recompile at 9/29/2025 7:15:23 PM
// 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/Navigate On Mouse Click")]
#if USE_NAVMESH
[RequireComponent(typeof(UnityEngine.AI.NavMeshAgent))]
#endif
public class NavigateOnMouseClick : PixelCrushers.DialogueSystem.Demo.NavigateOnMouseClick
{
}
}