summaryrefslogtreecommitdiff
path: root/shared-bindings/protomatter/Protomatter.h
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-04-15 10:19:33 -0500
committerJeff Epler <jepler@gmail.com>2020-04-17 18:43:57 -0500
commit64c3968a2e2c626036fcd3d148eae7ba092e6096 (patch)
treea85acce646d2fbd5f80858a2ec79ee036f7a0cf2 /shared-bindings/protomatter/Protomatter.h
parent545b6e560a206fe2836647829e1707240d364c5f (diff)
protomatter: move get_width/height to common_hal
Diffstat (limited to 'shared-bindings/protomatter/Protomatter.h')
-rw-r--r--shared-bindings/protomatter/Protomatter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared-bindings/protomatter/Protomatter.h b/shared-bindings/protomatter/Protomatter.h
index 4704a626f..061c8de4e 100644
--- a/shared-bindings/protomatter/Protomatter.h
+++ b/shared-bindings/protomatter/Protomatter.h
@@ -55,5 +55,7 @@ void common_hal_protomatter_protomatter_reconstruct(protomatter_protomatter_obj_
void common_hal_protomatter_protomatter_set_paused(protomatter_protomatter_obj_t* self, bool paused);
bool common_hal_protomatter_protomatter_get_paused(protomatter_protomatter_obj_t* self);
void common_hal_protomatter_protomatter_refresh(protomatter_protomatter_obj_t* self);
+int common_hal_protomatter_protomatter_get_width(protomatter_protomatter_obj_t* self);
+int common_hal_protomatter_protomatter_get_height(protomatter_protomatter_obj_t* self);
#endif