A game about forced loneliness, made by TACStudios
at master 370 B view raw
1using System.Collections.Generic; 2 3namespace UnityEditor.ShaderGraph 4{ 5 internal class AdditionalCommandDescriptor 6 { 7 public string token { get; } 8 public string content { get; } 9 10 public AdditionalCommandDescriptor(string token, string content) 11 { 12 this.token = token; 13 this.content = content; 14 } 15 } 16}