Add Progress.md (#187)

* Match DynamicLink

* finish merge

* Add Progress.md and update readme
This commit is contained in:
jdflyer
2022-04-10 16:29:58 -06:00
committed by GitHub
parent dd8899033b
commit 545da8536d
12 changed files with 866 additions and 123 deletions
+4 -4
View File
@@ -54,6 +54,10 @@ public:
static JSUList<JKRFileLoader> sVolumeList;
};
inline bool JKRDetachResource(void* resource, JKRFileLoader* fileLoader) {
return JKRFileLoader::detachResource(resource,fileLoader);
}
inline void* JKRGetNameResource(const char* name, JKRFileLoader* loader) {
return JKRFileLoader::getGlbResource(name, loader);
}
@@ -62,8 +66,4 @@ inline void* JKRGetResource(const char* name) {
return JKRFileLoader::getGlbResource(name);
}
inline bool JKRDetachResource(void* resource, JKRFileLoader* loader) {
return JKRFileLoader::detachResource(resource, loader);
}
#endif /* JKRFILELOADER_H */