Skip to content

Commit

Permalink
Add XML documentation to Width and Height of MaskEntry
Browse files Browse the repository at this point in the history
  • Loading branch information
luizzeroxis committed Nov 29, 2024
1 parent 05b4961 commit a1fadae
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion UndertaleModLib/Models/UndertaleSprite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,13 @@ public class MaskEntry : IDisposable
{
public byte[] Data { get; set; }

// Not in the data file
/// <summary>
/// Width of this sprite mask. UTMT only.
/// </summary>
public uint Width { get; set; }
/// <summary>
/// Height of this sprite mask. UTMT only.
/// </summary>
public uint Height { get; set; }

public MaskEntry()
Expand Down

0 comments on commit a1fadae

Please sign in to comment.