Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
IndexKeyAttribute.cs
1 using System;
2 
3 namespace Entitas.CodeGenerator {
4 
5  [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
6  public class IndexKeyAttribute : Attribute {
7 
8  public readonly string key;
9 
10  public IndexKeyAttribute(string key) {
11  this.key = key;
12  }
13  }
14 }