From c08918436d36b9fc39d7ebf5acb328187e5a4b4f Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 22 Jun 2020 14:38:16 +1000 Subject: [PATCH] Export SelectionsAdd/Remove per request --- src/SelectionBox.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SelectionBox.h b/src/SelectionBox.h index bf7715e32..4da48547c 100644 --- a/src/SelectionBox.h +++ b/src/SelectionBox.h @@ -9,6 +9,6 @@ struct IGameComponent; extern struct IGameComponent Selections_Component; void Selections_Render(void); -void Selections_Add(cc_uint8 id, const IVec3* p1, const IVec3* p2, PackedCol col); -void Selections_Remove(cc_uint8 id); +CC_API void Selections_Add(cc_uint8 id, const IVec3* p1, const IVec3* p2, PackedCol col); +CC_API void Selections_Remove(cc_uint8 id); #endif