rabidus-test/Assets/SCSM/SciFiShipController/Demos/Scripts/DemoFlyToLocationShipData.cs

16 lines
515 B
C#
Raw Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Sci-Fi Ship Controller. Copyright (c) 2018-2023 SCSM Pty Ltd. All rights reserved.
namespace SciFiShipController
{
/// <summary>
/// Class used for storing AI Data on a ship to be used by the state method.
/// </summary>
public class DemoFlyToLocationShipData : MonoBehaviour
{
public AIBehaviourInput.AIBehaviourType currentBehaviourType = AIBehaviourInput.AIBehaviourType.CustomSeekArrival;
}
}