mirror of
https://github.com/Starpelly/raylib-beef.git
synced 2025-03-15 05:16: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
|
// Current Output Beef Code
|
||||||
private static StringBuilder OutputString = new StringBuilder();
|
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;
|
private static Root API;
|
||||||
|
|
||||||
|
|
|
@ -6,16 +6,18 @@ class Program
|
||||||
{
|
{
|
||||||
public static int Main()
|
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())
|
while (!WindowShouldClose())
|
||||||
{
|
{
|
||||||
BeginDrawing();
|
BeginDrawing();
|
||||||
|
|
||||||
ClearBackground(RAYWHITE);
|
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 - 128, GetScreenHeight() / 2 - 128, 256, 256, beefOutline);
|
||||||
DrawRectangle(GetScreenWidth() / 2 - 112, GetScreenHeight() / 2 - 112, 224, 224, beefMain);
|
DrawRectangle(GetScreenWidth() / 2 - 112, GetScreenHeight() / 2 - 112, 224, 224, beefMain);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue