This page has been translated automatically.
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
Migration
Migrating to UNIGINE 2.0
C++ API Migration
Migrating from UNIGINE 2.0 to UNIGINE 2.1
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine::CallbackBase Class

Callback base class.

To use this class, include the UnigineCallback.h file.

Unigine::CallbackBase Class

Members


virtual ~CallbackBase ()

Virtual destructor.

virtual void run () =0

Run callback function without arguments.

void run (A0 a0)

Run callback function with one argument.

Arguments

  • A0 a0 - First argument.

void run (A0 a0, A1 a1)

Run callback function with two arguments.

Arguments

  • A0 a0 - First argument.
  • A1 a1 - Second argument.

void run (A0 a0, A1 a1, A2 a2)

Run callback function with three arguments.

Arguments

  • A0 a0 - First argument.
  • A1 a1 - Second argument.
  • A2 a2 - Third argument.

void run (A0 a0, A1 a1, A2 a2, A3 a3)

Run callback function with four arguments.

Arguments

  • A0 a0 - First argument.
  • A1 a1 - Second argument.
  • A2 a2 - Third argument.
  • A3 a3 - Fourth argument.

void run (A0 a0, A1 a1, A2 a2, A3 a3, A4 a4)

Run callback function with five arguments.

Arguments

  • A0 a0 - First argument.
  • A1 a1 - Second argument.
  • A2 a2 - Third argument.
  • A3 a3 - Fourth argument.
  • A4 a4 - Fifth argument.
Last update: 2017-07-03
Build: ()