001package com.fs.starfarer.api.loading;
002
003public interface RoleEntryAPI {
004        String getVariantId();
005        void setWeight(float weight);
006        void setVariantId(String variantId);
007        float getWeight();
008        boolean isFighterWing();
009        float getFPCost();
010}