Merge pull request #46 from robojumper/d_dylink

d_dylink for the most part
This commit is contained in:
Elijah Thomas
2024-05-31 20:09:21 -04:00
committed by GitHub
10 changed files with 363 additions and 56 deletions
+11 -3
View File
@@ -3,10 +3,18 @@
#include <common.h>
namespace dDyl {
class dDynamicModuleControl {
public:
dDynamicModuleControl() {}
virtual ~dDynamicModuleControl();
bool Unlink(u16 relId);
void set(u16 *ptr, int count);
BOOL do_link() const;
BOOL do_unlink();
} // dDyl
private:
u16 *mPtr;
int mCount;
};
#endif