Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
Entity
Exceptions
EntityIsAlreadyRetainedByOwnerException.cs
1
namespace
Entitas
{
2
3
public
class
EntityIsAlreadyRetainedByOwnerException
:
EntitasException
{
4
5
public
EntityIsAlreadyRetainedByOwnerException
(
IEntity
entity,
object
owner)
6
: base(
"'"
+ owner +
"' cannot retain "
+ entity +
"!\n"
+
7
"Entity is already retained by this object!"
,
8
"The entity must be released by this object first."
) {
9
}
10
}
11
}
Entitas
Definition:
Collector.cs:4
Entitas.EntityIsAlreadyRetainedByOwnerException
Definition:
EntityIsAlreadyRetainedByOwnerException.cs:3
Entitas.IEntity
Definition:
IEntity.cs:14
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13