Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
AttributeInfo.cs
1 using System.Collections.Generic;
2 
3 namespace Entitas {
4 
5  public class AttributeInfo {
6 
7  public readonly object attribute;
8  public readonly List<PublicMemberInfo> memberInfos;
9 
10  public AttributeInfo(object attribute, List<PublicMemberInfo> memberInfos) {
11  this.attribute = attribute;
12  this.memberInfos = memberInfos;
13  }
14  }
15 }