2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00
raylib-cs/Raylib-cs/Program.cs
ChrisDill 7b965906f8 Added vs project
- Initial version of bindings(WIP)
2018-07-13 14:55:07 +01:00

43 lines
1.1 KiB
C#

using System;
using static Raylibcs.Raylibcs;
namespace Raylibcs
{
class Program
{
static void Main(string[] args)
{
InitWindow(800, 450, "Raylibcs 0.1");
SetTargetFPS(60);
SetExitKey(256);
var sound = LoadSound("alive.wav");
PlaySound(ref sound);
var t = LoadTexture("crimbocore.png");
//var f = LoadSpriteFont("Vera.ttf");
var w = new Color(255, 255, 255, 255);
var c = new Color(124, 124, 124, 255);
var g = new Color(230, 230, 230, 255);
while (!WindowShouldClose())
{
if (IsKeyPressed(257))
{
TakeScreenshot("test.png");
}
BeginDrawing();
ClearBackground(c);
DrawTexture(t, 0, 0, w);
DrawFPS(0, 0);
//DrawTextEx(f, "Congrats! You created your first window!", new Vector2(190, 200), 20, 0, w);
EndDrawing();
}
CloseWindow();
}
}
}