diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-03 13:37:50 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-03 13:37:50 -0400 |
commit | 06623f2b33fc9975e52d431eaa45526899ff1b3c (patch) | |
tree | d81d331a106c0f9111de776a73a3492f78c6a93c /include/pso | |
parent | 1c1292fcc599714d988c5773d356e54c7084481f (diff) |
TObject: Make all the task related globals extern
Diffstat (limited to 'include/pso')
-rw-r--r-- | include/pso/TObject.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index 62f02ef..bf23b56 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -1,12 +1,17 @@ #ifndef TOBJECT_H #define TOBJECT_H +#include "pso/forward.h" #include "pso/macros.h" #include <global_types.h> OBJECT_NAME(TObject) +extern TMainTask main_task; +extern TObject global_obj1; +extern TObject global_obj2; + class TObject { public: const char *name; |