Codechange: remove SimpleSpriteAllocator

This commit is contained in:
Rubidium
2025-02-23 14:44:11 +01:00
committed by rubidium42
parent b50cf8f252
commit 23ba18ada7
3 changed files with 1 additions and 15 deletions
-6
View File
@@ -31,12 +31,6 @@ enum SpriteCacheCtrlFlags : uint8_t {
extern uint _sprite_cache_size;
/** SpriteAllocate that uses malloc to allocate memory. */
class SimpleSpriteAllocator : public SpriteAllocator {
protected:
void *AllocatePtr(size_t size) override;
};
/** SpriteAllocator that allocates memory via a unique_ptr array. */
class UniquePtrSpriteAllocator : public SpriteAllocator {
public: