Handles - Paramecium13/LSN GitHub Wiki

Handles are an opaque data type meant to be received from and sent to systems in the game. As such, handles cannot be created directly by LSN code.

Handle Types

Syntax for defining a handle type:

handle ⌈name⌋ {optional ':' ⌈inherited types⌋ };

Example of inheritance:

handle hDog : hAnimal; handle hAnimal; handle hCzechoslovakianWolfdog : hDog;