Create a new EquipNodeImpl instance representing a body structure. @param bodyStructure The part of the body. @param order The order of the body structure
(BodyStructure bodyStructure, int order)
| 70 | * @param order The order of the body structure |
| 71 | */ |
| 72 | public EquipNode(BodyStructure bodyStructure, int order) |
| 73 | { |
| 74 | this.nodeType = NodeType.BODY_SLOT; |
| 75 | this.bodyStructure = bodyStructure; |
| 76 | this.name = bodyStructure.toString(); |
| 77 | this.order = FMT.format(order); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Create a new EquipNodeImpl instance representing an equipment slot. |
nothing calls this directly
no test coverage detected