diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-23 14:43:30 -0600 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-23 14:43:30 -0600 |
commit | 3b97e627caa6883391bd1e9f3c31172e10bf7404 (patch) | |
tree | 534962ac997ec72434f964129d4ba17ad792ce95 /mthread.hpp | |
parent | 61bd7df99d32b8c489383568afc53117ab1fa81f (diff) |
finished functions to achieve polymorphism
Diffstat (limited to 'mthread.hpp')
-rw-r--r-- | mthread.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mthread.hpp b/mthread.hpp index f59732c..953d021 100644 --- a/mthread.hpp +++ b/mthread.hpp @@ -64,9 +64,11 @@ class mthread { int state; struct mthread_divinfo divide(); - void render(); //TODO void render_area(); + void run(); + bool find_work(); + void check_work_request(); }; |