Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
IPoolCodeGenerator.cs
1 namespace Entitas.CodeGenerator {
2 
3  public interface IPoolCodeGenerator : ICodeGenerator {
4 
5  CodeGenFile[] Generate(string[] poolNames);
6  }
7 }