Entitas
0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
CodeGenerator
Attributes
DontGenerateAttribute.cs
1
using
System
;
2
3
namespace
Entitas
.CodeGenerator {
4
5
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Struct)]
6
public
class
DontGenerateAttribute
: Attribute {
7
8
public
readonly
bool
generateIndex;
9
10
public
DontGenerateAttribute
(
bool
generateIndex =
true
) {
11
this.generateIndex = generateIndex;
12
}
13
}
14
}
Entitas
Definition:
EntitasCache.cs:3
System
Entitas.CodeGenerator.DontGenerateAttribute
Definition:
DontGenerateAttribute.cs:6
Generated by
1.8.12