Files
osu-framework/osu.Framework/Graphics/Textures/TextureTooLargeForGLException.cs
2023-06-07 08:16:24 +03:00

12 lines
298 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
namespace osu.Framework.Graphics.Textures
{
public class TextureTooLargeForGLException : InvalidOperationException
{
}
}