A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4namespace osu.Framework.Graphics.Shaders
5{
6 internal interface IUniformMapping
7 {
8 string Name { get; }
9
10 void LinkShaderUniform(IUniform uniform);
11 void UnlinkShaderUniform(IUniform uniform);
12 }
13}