From caec30f439ef62a70436689332bb45c57eb11a9b Mon Sep 17 00:00:00 2001 From: Reece Wilson Date: Tue, 5 Oct 2021 21:12:52 +0000 Subject: [PATCH] Remove AUI_METHODS from the example --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c37af95..873bbe8 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,9 @@ 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)) - ) + AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), + AUI_METHOD(void, onButtonTick, (AuUInt8, mb)), + AUI_METHOD(void, onButtonUp, (AuUInt8, mb)) ); ```