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