1
This commit is contained in:
19
Unity/Scripts/SubSystems/Assets/AssetsProfile.cs
Normal file
19
Unity/Scripts/SubSystems/Assets/AssetsProfile.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using Sirenix.OdinInspector;
|
||||
namespace BITKit
|
||||
{
|
||||
public class BITKitSO : ScriptableObject, IAssetsRegister
|
||||
{
|
||||
public virtual void RegisterAssets() { }
|
||||
}
|
||||
}
|
||||
namespace BITKit.SubSystems.Assets
|
||||
{
|
||||
public class AssetsProfile : ScriptableObject
|
||||
{
|
||||
[DisplayAsString] public string createTime;
|
||||
public List<BITKitSO> assets = new();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user