From 1d158614bd096345617f8cdb30ba4670ec2a5dab Mon Sep 17 00:00:00 2001 From: Reece Wilson Date: Thu, 28 Oct 2021 21:22:04 +0000 Subject: [PATCH] [*] Improve readme by readding the <...> [*] Improve readme by readding the <...> include to indicate the user should include their public api to initialize the interfaces within that particular header --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d963b2e..4fc1f3d 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,14 @@ LIB_INTERFACE(IInputMouseSubscriber, #define MY_LIB_GEN_BINDINGS #include #include +#include <[MyPublicAPI].hpp> ``` #### Usage: C++ inheritance (covers SWIG and CppSharp) ``` #include #include +#include <[MyPublicAPI].hpp> struct MyEventHandler : public IInputMouseSubscriber { @@ -64,4 +66,4 @@ AuSPtr handle = AuUnsafeRaiiToShared(&test); * [AuroraForEach](https://git.reece.sx/AuroraSupport/AuroraForEach) [header only] ##### Not recommended for small projects and/or people with a shred of sanity left -##### Possibly useful for API developers \ No newline at end of file +##### Possibly useful for API developers \ No newline at end of file