Remove test folder

This commit is contained in:
Braedon Lewis 2023-03-19 23:44:11 -04:00
parent 392d81cf26
commit 56afdf631d
57 changed files with 7 additions and 5 deletions

View file

@ -13,7 +13,7 @@ namespace RaylibBeefGenerator
// Current Output Beef Code
private static StringBuilder OutputString = new StringBuilder();
private static string OutputDir = @"C:\Dev\raylib-beef\raylib-beef\src\test\";
private static string OutputDir = @"C:\Dev\raylib-beef\raylib-beef\src\";
private static Root API;

View file

@ -6,16 +6,18 @@ class Program
{
public static int Main()
{
InitWindow(1280, 720, "Raylib Beef 4.5");
InitWindow(800, 600, "Raylib Beef 4.5");
var beefMain = Color(165, 47, 78, 255);
var beefOutline = Color(243, 157, 157, 255);
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
var beefMain = Color(165, 47, 78, 255);
var beefOutline = Color(243, 157, 157, 255);
DrawRectangle(GetScreenWidth() / 2 - 128, GetScreenHeight() / 2 - 128, 256, 256, beefOutline);
DrawRectangle(GetScreenWidth() / 2 - 112, GetScreenHeight() / 2 - 112, 224, 224, beefMain);