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