mirror of
https://github.com/Starpelly/raylib-beef.git
synced 2025-03-14 21:06:58 +01:00
Remove test folder
This commit is contained in:
parent
392d81cf26
commit
56afdf631d
57 changed files with 7 additions and 5 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue