Entitas
0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Entitas
Entitas
EntitasException.cs
1
using
System
;
2
3
namespace
Entitas
{
4
5
/// Base exception used by Entitas.
6
public
class
EntitasException
: Exception {
7
8
public
EntitasException
(
string
message,
string
hint)
9
: base(hint != null ? (message +
"\n"
+ hint) : message) {
10
}
11
}
12
}
Entitas
Definition:
Collector.cs:4
System
Entitas.EntitasException
Base exception used by Entitas.
Definition:
EntitasException.cs:6
Generated by
1.8.13