Update tests and dll resolver (#336)
This commit is contained in:
parent
709a0c1c3d
commit
a657bb6367
5 changed files with 45 additions and 94 deletions
|
|
@ -1,7 +1,18 @@
|
|||
using System.Runtime.CompilerServices;
|
||||
using Xunit;
|
||||
|
||||
namespace Raylib_cs.Tests;
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
public static class BlittableHelper
|
||||
{
|
||||
public static bool IsBlittable<T>()
|
||||
{
|
||||
return !RuntimeHelpers.IsReferenceOrContainsReferences<T>();
|
||||
}
|
||||
}
|
||||
|
||||
public class RaylibTests
|
||||
{
|
||||
private unsafe void CheckType<T>() where T : unmanaged
|
||||
|
|
|
|||
Loading…
Reference in a new issue