Spine.BoneData.BoneData C# (CSharp) Method

BoneData() public method

public BoneData ( int index, String name, BoneData parent ) : System
index int
name String
parent BoneData May be null.
return System
		public BoneData (int index, String name, BoneData parent) {
			if (index < 0) throw new ArgumentException("index must be >= 0", "index");
			if (name == null) throw new ArgumentNullException("name", "name cannot be null.");
			this.index = index;
			this.name = name;
			this.parent = parent;
		}