package Current.popups.Settings; /** * This class can be sent by the mcbSend command to request that * settings for a certain class appear in the McBilliards Settings window */ public class SettingsRequest { public Class C; public SettingsRequest(Class C) { this.C=C; } }