// Amplify Shader Editor - Visual Shader Editing Tool // Copyright (c) Amplify Creations, Lda using System; using System.Collections.Generic; using UnityEngine; namespace AmplifyShaderEditor { [Serializable] public class TemplateDBItem { public string GUID; } [Serializable] public class TemplateDB : ScriptableObject { public List Items = new List(); } }