Class Property
java.lang.Object
org.openpatch.scratch.extensions.tiled.Property
The Property class represents a property of a Tiled object. It includes fields for the property
name, type, and value.
Example usage:
Property p = new Property();
p.name = "myProperty";
p.type = "number";
p.value = "42";
-
Field Summary
-
Constructor Summary
-
Method Summary
-
Field Details
-
name
The name of the property. -
type
The type of the property. -
value
The value of the property.
-
-
Constructor Details
-
Property
public Property()
-