mirror of
https://github.com/Starpelly/raylib-beef.git
synced 2025-03-15 05:16:58 +01:00
Make test beef project
This commit is contained in:
parent
56afdf631d
commit
8ef921c2d9
4 changed files with 15 additions and 7 deletions
|
@ -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"
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
|
|
6
raylib-beef/raylib-test/BeefProj.toml
Normal file
6
raylib-beef/raylib-test/BeefProj.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
FileVersion = 1
|
||||||
|
Dependencies = {corlib = "*", raylib-beef = "*"}
|
||||||
|
|
||||||
|
[Project]
|
||||||
|
Name = "raylib-test"
|
||||||
|
StartupObject = "raylib_test.Program"
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue