diff --git a/README.md b/README.md index 50e9000..c37af95 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ This library implements the macros required to define Aurora style interfaces. D #### In your public API: ``` - LIB_INTERFACE(IInputMouseSubscriber, - AUI_METHODS - ( - AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), - AUI_METHOD(void, onButtonTick, (AuUInt8, mb)), - AUI_METHOD(void, onButtonUp, (AuUInt8, mb)) - ) - ); +LIB_INTERFACE(IInputMouseSubscriber, + AUI_METHODS + ( + AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), + AUI_METHOD(void, onButtonTick, (AuUInt8, mb)), + AUI_METHOD(void, onButtonUp, (AuUInt8, mb)) + ) +); ``` #### In a dedicated translation unit: