8 lines
237 B
C++
8 lines
237 B
C++
#pragma once
|
|
#include <raylib.h>
|
|
#include "Vec2.h"
|
|
namespace raycpp
|
|
{
|
|
void DrawRectangle(Vec2<int> pos, Vec2<int> widthHeight, Color color);
|
|
void DrawRectangleLinesEx(Vec2<int> pos, Vec2<int> widthHeight, int lineThick, Color color);
|
|
} |