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

13 lines
476 B
C#
Raw Permalink Normal View History

2023-01-22 16:38:23 +01:00
using System.Collections.Generic;
using UnityEngine;
namespace ABI.CCK.Components
{
[AddComponentMenu("")]
[HelpURL("https://developers.abinteractive.net/cck/")]
public class CVRObjectLibrary : MonoBehaviour, ICCK_Component
2023-01-22 16:38:23 +01:00
{
public List<CVRObjectCatalogCategory> objectCatalogCategories = new List<CVRObjectCatalogCategory>();
public List<CVRObjectCatalogEntry> objectCatalogEntries = new List<CVRObjectCatalogEntry>();
}
}