001package com.fs.starfarer.api; 002 003/** 004 * WARNING 005 * Do not store campaign data in data members of an implementation of this interface. 006 * There is only one instance of it per application session and references to campaign 007 * data will likely cause memory leaks. 008 * 009 * If data storage is required, use SectorAPI.getMemory() or other such. 010 * 011 */ 012public interface MusicPlayerPluginWithVolumeControl extends MusicPlayerPlugin { 013 014 float getMusicSetVolumeForCampaignStateToken(Object token, Object param); 015 016 017 018}