Skip to main content

Auki::IAukiModule

Inherited by Auki.AukiModule

Public Functions

Name
Tuple< uint, uint >_GetMessageTypeRange()
(Internal) Returns the message type range expected by the module. Invoked by the IConjureKit-implementing object the module was constructed with.
void_HandleMessage(uint messageType, byte[] data)
(Internal) Handles a message. Invoked by the IConjureKit-implementing object the module was constructed with.
void_Update()
(Internal) Game loop per-frame update. Invoked by the IConjureKit-implementing object the module was constructed with.

Public Functions Documentation

function _GetMessageTypeRange

Tuple< uint, uint > _GetMessageTypeRange()

(Internal) Returns the message type range expected by the module. Invoked by the IConjureKit-implementing object the module was constructed with.

Return: Message type range tuple

function _HandleMessage

void _HandleMessage(
uint messageType,
byte[] data
)

(Internal) Handles a message. Invoked by the IConjureKit-implementing object the module was constructed with.

Parameters:

  • messageType Message type
  • data Byte array-encoded data

function _Update

void _Update()

(Internal) Game loop per-frame update. Invoked by the IConjureKit-implementing object the module was constructed with.