AstcDecoderException.cs 188 B

123456789
  1. using System;
  2. namespace Ryujinx.Graphics.Texture.Astc
  3. {
  4. public class AstcDecoderException : Exception
  5. {
  6. public AstcDecoderException(string exMsg) : base(exMsg) { }
  7. }
  8. }