Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
35 lines
616 B
Java
35 lines
616 B
Java
package electrosphere.data.macro.units;
|
|
|
|
/**
|
|
* An item equipped to a unit
|
|
*/
|
|
public class UnitEquippedItem {
|
|
|
|
/**
|
|
* The equip point that has an item equipped
|
|
*/
|
|
String pointId;
|
|
|
|
/**
|
|
* The id of the item attached to the point
|
|
*/
|
|
String itemId;
|
|
|
|
/**
|
|
* Gets the equip point that has an item attached
|
|
* @return The equip point
|
|
*/
|
|
public String getPointId(){
|
|
return pointId;
|
|
}
|
|
|
|
/**
|
|
* Gets the id of the item equipped to the point
|
|
* @return The id of the item
|
|
*/
|
|
public String getItemId(){
|
|
return itemId;
|
|
}
|
|
|
|
}
|