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

Fix IsBlittableCache.VALUE did not fit in the c# name rules

This commit is contained in:
MrScautHD 2023-08-05 19:29:00 +02:00
commit 4b09ee9ab7

View file

@ -36,7 +36,7 @@ namespace Raylib_cs.Tests
{
public static bool IsBlittable<T>()
{
return IsBlittableCache<T>.Value;
return IsBlittableCache<T>.VALUE;
}
public static bool IsBlittable(this Type type)
@ -64,7 +64,7 @@ namespace Raylib_cs.Tests
private static class IsBlittableCache<T>
{
public static readonly bool Value = IsBlittable(typeof(T));
public static readonly bool VALUE = IsBlittable(typeof(T));
}
}
}