mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 23:07:44 +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) { }
|
|
}
|
|
} |