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

12 lines
No EOL
253 B
C#
Executable file

using UnityEngine;
namespace ABI.CCK.Components
{
public class CVRDescription : MonoBehaviour
{
public string description;
public string url;
public bool locked = false;
public int type = 0;
}
}