Class EnterChecker
Provides a way to perform additional checks when entering an object (typically out of bounds checks).
public abstract class EnterChecker
- Inheritance
-
EnterChecker
Methods
CanEnter(object)
Called by Run(object, CompiledUpdate, nint, UpdateObjectData[]) to perform additional checks when entering an object (typically out of bounds checks).
public abstract bool CanEnter(object obj)
Parameters
obj
objectThe object being entered.
Returns
- bool
True if checks succeed, false otherwise.