Update string handling
This commit is contained in:
parent
77288efc11
commit
c31808190d
3 changed files with 353 additions and 13 deletions
|
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using Xunit;
|
||||
using Raylib_cs;
|
||||
|
||||
namespace Raylib_cs.Tests
|
||||
{
|
||||
|
|
@ -39,5 +40,26 @@ namespace Raylib_cs.Tests
|
|||
Assert.True(BlittableHelper.IsBlittable<VrStereoConfig>());
|
||||
Assert.True(BlittableHelper.IsBlittable<RenderBatch>());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Debug()
|
||||
{
|
||||
// Initialization
|
||||
//--------------------------------------------------------------------------------------
|
||||
const int screenWidth = 800;
|
||||
const int screenHeight = 450;
|
||||
|
||||
Raylib.InitWindow(screenWidth, screenHeight, "Aaåäö");
|
||||
|
||||
while (!Raylib.WindowShouldClose())
|
||||
{
|
||||
Raylib.BeginDrawing();
|
||||
Raylib.ClearBackground(Color.RAYWHITE);
|
||||
Raylib.EndDrawing();
|
||||
}
|
||||
|
||||
Raylib.CloseWindow();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue