12 lines
253 B
C#
12 lines
253 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace ABI.CCK.Components
|
|||
|
{
|
|||
|
public class CVRDescription : MonoBehaviour
|
|||
|
{
|
|||
|
public string description;
|
|||
|
public string url;
|
|||
|
public bool locked = false;
|
|||
|
public int type = 0;
|
|||
|
}
|
|||
|
}
|