TechbloxModdingAPI/CodeGenerator/ECSPropertyInfo.cs

11 lines
215 B
C#
Raw Normal View History

using System;
namespace CodeGenerator
{
public class ECSPropertyInfo
{
public string Name { get; set; }
public Type Type { get; set; }
public Type ComponentType { get; set; }
}
}