17 lines
292 B
C#
17 lines
292 B
C#
|
|
/*
|
|
using System;
|
|
using UnityEngine.AddressableAssets;
|
|
|
|
namespace Golems
|
|
{
|
|
[Serializable]
|
|
public class AlbertGhostMemorySettingsRef : AssetReferenceT<AlbertGhostMemorySettings>
|
|
{
|
|
public AlbertGhostMemorySettingsRef(string guid) : base(guid)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
*/ |