Files
MacroLibX/runtime/Includes/Core/Graphics.inl
2025-01-07 01:20:26 +01:00

12 lines
224 B
C++

#pragma once
#include <Core/Graphics.h>
namespace mlx
{
void GraphicsSupport::TryEraseSpritesInScene(NonOwningPtr<Texture> texture) noexcept
{
MLX_PROFILE_FUNCTION();
p_scene->TryEraseSpriteFromTexture(texture);
}
}