mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-03-31 09:17:04 +09:00
13 lines
281 B
C++
13 lines
281 B
C++
#pragma once
|
|
|
|
#include <mglpp/system/vec.hpp>
|
|
#include <mglpp/graphics/Color.hpp>
|
|
|
|
namespace mgl {
|
|
class Window;
|
|
}
|
|
|
|
namespace gsr {
|
|
// Inner border
|
|
void draw_rectangle_outline(mgl::Window &window, mgl::vec2f pos, mgl::vec2f size, mgl::Color color, float border_size);
|
|
} |