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

Corrected indentation due to namespace and reimplemented fixes based on master branch's file.

This is related to [this issue](https://github.com/ChrisDill/Raylib-cs/pull/198#issuecomment-1711015768).
This commit is contained in:
WraithGlade 2023-09-08 12:04:17 -04:00 committed by GitHub
commit 4481cbaa91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,10 +19,10 @@ using System.Numerics;
using Raylib_cs;
using static Raylib_cs.Raylib;
namespace Examples.Core
namespace Examples.Core;
public class InputGamepad
{
public class InputGamepad
{
// NOTE: Gamepad name ID depends on drivers and OS
// These are some possible names the gamepads could have.
public const string XBOX360_LEGACY_NAME_ID = "Xbox Controller";
@ -325,5 +325,4 @@ namespace Examples.Core
return 0;
}
}
}