Files
beyond/Assets/Plugins/Pixel Crushers/Quest Machine/Wrappers/Quest MonoBehaviours/Quest Interaction/QuestControl.cs
2024-11-20 15:21:28 +01:00

17 lines
471 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.QuestMachine.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/Quest Machine/Quest Control")]
public class QuestControl : PixelCrushers.QuestMachine.QuestControl
{
}
}