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

14 lines
383 B
C#
Raw Normal View History

2023-01-22 16:38:23 +01:00
using UnityEngine;
namespace ABI.CCK.Components
{
[AddComponentMenu("ChilloutVR/CVR Description")]
[HelpURL("https://developers.abinteractive.net/cck/")]
public class CVRDescription : MonoBehaviour, ICCK_Component
2023-01-22 16:38:23 +01:00
{
public string description;
public string url;
public bool locked = false;
public int type = 0;
}
}