// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
namespace FlaxEngine
{
///
/// Draw method within this interface is used for .CallDrawing single DrawCall
/// Each frame new Queue is sent to GPU from this CPU bound method
///
///
///
public interface IDrawable
{
///
/// Render2D drawing methods should be used within this method during render phase to be visible.
///
void Draw();
}
}