From c17919cd97fe07aa60ef0d70560809bfb283ed17 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Thu, 19 Sep 2024 09:09:42 +0800 Subject: [PATCH] refactor: native types --- thermion_dart/native/include/Aabb2.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 thermion_dart/native/include/Aabb2.h diff --git a/thermion_dart/native/include/Aabb2.h b/thermion_dart/native/include/Aabb2.h deleted file mode 100644 index ba1196ec..00000000 --- a/thermion_dart/native/include/Aabb2.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" -{ -#endif -struct Aabb2 { - float minX; - float minY; - float maxX; - float maxY; -}; - -typedef struct Aabb2 Aabb2; - -#ifdef __cplusplus -} -#endif \ No newline at end of file