Epok Engine

EPOK RUNTIME

epok::object_registry

Variable

Variable

Exposes `object_registry` on the `epok` namespace for the actor tables module.

Belongs to
epok
Header
actor_tables.hpp

Declaration

Declaration
ObjectRegistryStorage<64> object_registry

Exposes `object_registry` on the `epok` namespace for the actor tables module.

Type
ObjectRegistryStorage<64>
Storage
Namespace scope

Example

C++ example
#include "actor_tables.hpp"

auto value = epok::object_registry;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/actor_tables.hpp:153