Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
Context
Exceptions
EntityIsNotDestroyedException.cs
1
namespace
Entitas
{
2
3
public
class
EntityIsNotDestroyedException
:
EntitasException
{
4
5
public
EntityIsNotDestroyedException
(
string
message)
6
: base(message +
"\nEntity is not destroyed yet!"
,
7
"Did you manually call entity.Release(context) yourself? "
+
8
"If so, please don't :)"
) {
9
}
10
}
11
}
Entitas
Definition:
Collector.cs:4
Entitas.EntityIsNotDestroyedException
Definition:
EntityIsNotDestroyedException.cs:3
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13