We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 536f796 commit 4e96f0aCopy full SHA for 4e96f0a
src/WaterDropEngine/WdeResourceManager/Resource.hpp
@@ -24,9 +24,6 @@ namespace wde::resource {
24
uint32_t getReferenceCount() const { return _referenceCount; }
25
/** @return The name of the resource (default : will return resource path) */
26
virtual std::string getName() const { return _path; }
27
- void increaseReferenceCount() { _referenceCount++; }
28
- void decreaseReferenceCount() { _referenceCount--; }
29
- uint32_t getReferenceCount() const { return _referenceCount; }
30
31
32
static std::string getName(const ResourceType& type) {
0 commit comments