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,8 +19,8 @@ using System.Numerics;
using Raylib_cs; using Raylib_cs;
using static Raylib_cs.Raylib; 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 // NOTE: Gamepad name ID depends on drivers and OS
@ -326,4 +326,3 @@ namespace Examples.Core
return 0; return 0;
} }
} }
}