Epok Engine

EPOK RUNTIME

epok::nav::World::tick

Method · 1 overload

Method

Performs `tick` as part of the navigation module.

Belongs to
epok::nav::World
Header
navigation.hpp
Overloads
1

Declaration

Declaration
void tick()

Performs `tick` as part of the navigation module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "navigation.hpp"

epok::nav::World& object = /* obtain a valid instance */;

object.tick();

Why use it

It provides direct, allocation-conscious access to the navigation module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/navigation.hpp:113

Related members