Make test beef project

This commit is contained in:
Braedon Lewis 2023-03-19 23:49:43 -04:00
parent 56afdf631d
commit 8ef921c2d9
4 changed files with 15 additions and 7 deletions

View file

@ -2,6 +2,7 @@ FileVersion = 1
[Project] [Project]
Name = "raylib-beef" Name = "raylib-beef"
TargetType = "BeefLib"
StartupObject = "beef.Program" StartupObject = "beef.Program"
DefaultNamespace = "Raylib" DefaultNamespace = "Raylib"

View file

@ -1,5 +1,5 @@
FileVersion = 1 FileVersion = 1
Projects = {raylib-beef = {Path = "."}} Projects = {raylib-beef = {Path = "."}, raylib-test = {Path = "raylib-test"}}
[Workspace] [Workspace]
StartupProject = "raylib-beef" StartupProject = "raylib-test"

View file

@ -0,0 +1,6 @@
FileVersion = 1
Dependencies = {corlib = "*", raylib-beef = "*"}
[Project]
Name = "raylib-test"
StartupObject = "raylib_test.Program"

View file

@ -1,14 +1,14 @@
using System;
using Raylib; using Raylib;
namespace beef; namespace raylib_test;
class Program class Program
{ {
public static int Main() public static int Main(String[] args)
{ {
InitWindow(800, 600, "Raylib Beef 4.5"); InitWindow(800, 600, "Raylib Beef 4.5");
var beefMain = Color(165, 47, 78, 255); var beefMain = Color(165, 47, 78, 255);
var beefOutline = Color(243, 157, 157, 255); var beefOutline = Color(243, 157, 157, 255);
@ -30,6 +30,7 @@ class Program
EndDrawing(); EndDrawing();
} }
CloseWindow(); CloseWindow();
return 0; return 0;
} }
} }