BITFALL/Assets/Plugins/_MK/MKGlow/Scripts/IDimension.cs

20 lines
594 B
C#
Raw Normal View History

2023-10-20 19:31:12 +08:00
//////////////////////////////////////////////////////
// MK Glow IDimension //
// //
// Created by Michael Kremmel //
// www.michaelkremmel.de //
// Copyright © 2021 All rights reserved. //
//////////////////////////////////////////////////////
namespace MK.Glow
{
/// <summary>
/// Representation of the size of a render context
/// </summary>
internal interface IDimension
{
int width { get; }
int height { get; }
RenderDimension renderDimension { get; }
}
}