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

11 lines
No EOL
372 B
C#
Executable file

using System.Collections.Generic;
using UnityEngine;
namespace ABI.CCK.Components
{
public class CVRObjectLibrary : MonoBehaviour
{
public List<CVRObjectCatalogCategory> objectCatalogCategories = new List<CVRObjectCatalogCategory>();
public List<CVRObjectCatalogEntry> objectCatalogEntries = new List<CVRObjectCatalogEntry>();
}
}