Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
Context
Exceptions
ContextEntityIndexDoesAlreadyExistException.cs
1
namespace
Entitas
{
2
3
public
class
ContextEntityIndexDoesAlreadyExistException
:
EntitasException
{
4
5
public
ContextEntityIndexDoesAlreadyExistException
(
IContext
context,
string
name)
6
: base(
"Cannot add EntityIndex '"
+ name +
"' to context '"
+ context +
"'!"
,
7
"An EntityIndex with this name has already been added."
) {
8
}
9
}
10
}
Entitas.IContext
Definition:
IContext.cs:8
Entitas
Definition:
Collector.cs:4
Entitas.ContextEntityIndexDoesAlreadyExistException
Definition:
ContextEntityIndexDoesAlreadyExistException.cs:3
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13