cvr-props/Assets/ABI.CCK/Components/CVRAction.cs

15 lines
343 B
C#
Raw Permalink Normal View History

2023-01-22 16:38:23 +01:00
using UnityEngine;
namespace ABI.CCK.Components
{
[AddComponentMenu("")]
[HelpURL("https://developers.abinteractive.net/cck/")]
public class CVRAction : MonoBehaviour, ICCK_Component
2023-01-22 16:38:23 +01:00
{
[Header("Meta")]
public string actionName;
[Header("Objects")]
public GameObject[] actionObjects;
}
}