Class EnterChecker
Provides a way to perform additional checks when entering an object (typically out of bounds checks).
public abstract class EnterChecker
  - Inheritance
 - 
      objectEnterChecker
 
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
objobjectThe object being entered.
Returns
- bool
 True if checks succeed, false otherwise.