Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
Entity
Exceptions
EntityDoesNotHaveComponentException.cs
1
namespace
Entitas
{
2
3
public
class
EntityDoesNotHaveComponentException
:
EntitasException
{
4
5
public
EntityDoesNotHaveComponentException
(
int
index,
string
message,
string
hint)
6
: base(message +
"\nEntity does not have a component at index "
+ index +
"!"
, hint) {
7
}
8
}
9
}
Entitas
Definition:
Collector.cs:4
Entitas.EntityDoesNotHaveComponentException
Definition:
EntityDoesNotHaveComponentException.cs:3
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13