mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
9 lines
329 B
C#
9 lines
329 B
C#
|
namespace DiscUtils
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Delegate for calculating a disk geometry from a capacity.
|
|||
|
/// </summary>
|
|||
|
/// <param name="capacity">The disk capacity to convert.</param>
|
|||
|
/// <returns>The appropriate geometry for the disk.</returns>
|
|||
|
public delegate Geometry GeometryCalculation(long capacity);
|
|||
|
}
|