Normalize indentation in the readme

This commit is contained in:
Reece Wilson 2021-10-05 21:10:41 +00:00
parent fba70eeb92
commit 09b7d7f3da

View File

@ -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: