mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-29 11:56:24 +02:00
11 lines
No EOL
213 B
C#
11 lines
No EOL
213 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
class ShaderException : Exception
|
|
{
|
|
public ShaderException() : base() { }
|
|
|
|
public ShaderException(string Message) : base(Message) { }
|
|
}
|
|
} |