cs381/as6/Draw.hpp

9 lines
195 B
C++

#pragma once
#include "raylib-cpp.hpp"
// placeholder for draw helpers
void DrawSceneOutline() {
DrawRectangleLines(0, 0, GetScreenWidth(), GetScreenHeight(), raylib::Color::DarkGray());
}