diff --git a/spine-csharp/src/Attachments/IHasTextureRegion.cs b/spine-csharp/src/Attachments/IHasTextureRegion.cs
index 5df25a85f..a8092d63a 100644
--- a/spine-csharp/src/Attachments/IHasTextureRegion.cs
+++ b/spine-csharp/src/Attachments/IHasTextureRegion.cs
@@ -33,24 +33,24 @@ using System.Text;
namespace Spine {
public interface IHasTextureRegion {
/// The name used to find the
- public string Path { get; set; }
+ string Path { get; set; }
///
/// Sets the region used to draw the attachment. After setting the region or if the region's properties are changed,
/// must be called.
///
- public TextureRegion Region { get; set; }
+ TextureRegion Region { get; set; }
///
/// Updates any values the attachment calculates using the . Must be called after setting the
/// or if the region's properties are changed.
///
- public void UpdateRegion ();
+ void UpdateRegion ();
- public float R { get; set; }
- public float G { get; set; }
- public float B { get; set; }
- public float A { get; set; }
+ float R { get; set; }
+ float G { get; set; }
+ float B { get; set; }
+ float A { get; set; }
- public Sequence Sequence { get; set; }
+ Sequence Sequence { get; set; }
}
}