[csharp] Minor whitespace changes.

This commit is contained in:
Harald Csaszar 2026-03-11 10:02:32 +01:00
parent 5620b65028
commit c248037778
3 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ namespace Spine {
public string Path { get { return path; } set { path = value; } }
public Sequence Sequence { get { return sequence; } }
public MeshAttachment ParentMesh {
get { return parentMesh; }
set {

View File

@ -75,7 +75,7 @@ namespace Spine {
public string Path { get; set; }
public Sequence Sequence { get { return sequence; } }
public RegionAttachment (string name, Sequence sequence)
: base(name) {
if (sequence == null) throw new ArgumentException("sequence cannot be null.", "sequence");

View File

@ -46,7 +46,7 @@ namespace Spine {
public int[] Bones { get { return bones; } set { bones = value; } }
public float[] Vertices { get { return vertices; } set { vertices = value; } }
public int WorldVerticesLength { get { return worldVerticesLength; } set { worldVerticesLength = value; } }
public VertexAttachment (string name)
: base(name) {