13 lines
250 B
C#
Executable file
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;
|
|
|
|
}
|
|
}
|