Remove AUI_METHODS from the example

This commit is contained in:
Reece Wilson 2021-10-05 21:12:52 +00:00
parent 09b7d7f3da
commit caec30f439

View File

@ -16,12 +16,9 @@ This library implements the macros required to define Aurora style interfaces. D
#### In your public API: #### In your public API:
``` ```
LIB_INTERFACE(IInputMouseSubscriber, LIB_INTERFACE(IInputMouseSubscriber,
AUI_METHODS AUI_METHOD(void, onButtonPress, (AuUInt8, mb)),
( AUI_METHOD(void, onButtonTick, (AuUInt8, mb)),
AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), AUI_METHOD(void, onButtonUp, (AuUInt8, mb))
AUI_METHOD(void, onButtonTick, (AuUInt8, mb)),
AUI_METHOD(void, onButtonUp, (AuUInt8, mb))
)
); );
``` ```