Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
Entity
Exceptions
EntityIsNotEnabledException.cs
1
namespace
Entitas
{
2
3
public
class
EntityIsNotEnabledException
:
EntitasException
{
4
5
public
EntityIsNotEnabledException
(
string
message)
6
: base(message +
"\nEntity is not enabled!"
,
7
"The entity has already been destroyed. "
+
8
"You cannot modify destroyed entities."
) {
9
}
10
}
11
}
Entitas
Definition:
Collector.cs:4
Entitas.EntityIsNotEnabledException
Definition:
EntityIsNotEnabledException.cs:3
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13