Interface BpxPrintDebug

An interface to extend if you want to define __printDebug() – a convenience method used by the internal logger to print objects in a custom way. An example is built-in BpxVector2d type which defined __printDebug() in order to be printed by the logger in a (x,y) format.

interface BpxPrintDebug {
    __printDebug(): string;
}

Implemented by

Methods

Methods