Renderer/src/main/java/electrosphere/data/macro/units/UnitEquippedItem.java
austin a7bb4300ae
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
moving data packages around
2025-05-28 16:01:25 -04:00

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;
}
}