mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:35:29 +00:00
23 lines
508 B
C#
23 lines
508 B
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK
|
|
{
|
|
/// <summary>
|
|
/// Represents an item that can be packed with the TexturePacker.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the packable item.</typeparam>
|
|
interface IPackable<T> : IEquatable<T>
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
}
|
|
}
|