1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 10:06:46 -06:00

16 lines
357 B
C#
Raw Normal View History

using NUnit.Framework;
using Ryujinx.Audio.Renderer.Parameter.Effect;
using System.Runtime.CompilerServices;
namespace Ryujinx.Tests.Audio.Renderer.Parameter.Effect
{
class ReverbParameterTests
{
[Test]
public void EnsureTypeSize()
{
Assert.AreEqual(0x41, Unsafe.SizeOf<ReverbParameter>());
}
}
}