cvr-props/Assets/ABI.CCK/Components/CVRAction.cs
2023-01-22 16:38:23 +01:00

13 lines
250 B
C#
Executable file

using UnityEngine;
namespace ABI.CCK.Components
{
public class CVRAction : MonoBehaviour
{
[Header("Meta")]
public string actionName;
[Header("Objects")]
public GameObject[] actionObjects;
}
}