Watch
2
0
Fork
You've already forked raylib-cs
0

chore: run dotnet format scoped default (was previously scoped to just 'style')

This commit is contained in:
tiger tiger tiger 2026-07-30 15:07:59 +02:00
commit c06874f14a
No known key found for this signature in database
23 changed files with 749 additions and 485 deletions

View file

@ -14,10 +14,16 @@ namespace Examples;
public interface IExample
{
/// <summary>Display name shown in the navigation dropdown.</summary>
string Name { get; }
string Name
{
get;
}
/// <summary>Window title, matching the example's standalone <c>Main()</c>.</summary>
string Title { get; }
string Title
{
get;
}
/// <summary>Desktop window size, matching the standalone <c>Main()</c>. The browser canvas is fixed at 800x450.</summary>
int Width => 800;