Files
SampleRenderPasses/Assets/Scripts/RenderPasses/AlbertGhostMemory/AlbertGhostMemorySettingsRef.cs
2025-05-18 22:39:39 +03:00

17 lines
292 B
C#

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