You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
581 B
33 lines
581 B
package ÌôÕ½;
|
|
|
|
|
|
/**
|
|
* @author The Administrator
|
|
* @version 1.0
|
|
* @created 26-10ÔÂ-2025 14:07:39
|
|
*/
|
|
class ConfigurationOption {
|
|
|
|
private String description;
|
|
private String name;
|
|
private double price;
|
|
public ConfigurationSystem m_ConfigurationSystem;
|
|
public CustomCar m_CustomCar;
|
|
|
|
public ConfigurationOption(){
|
|
|
|
}
|
|
|
|
public void finalize() throws Throwable {
|
|
|
|
}
|
|
/**
|
|
*
|
|
* @param name
|
|
* @param description
|
|
* @param price
|
|
*/
|
|
public ConfigurationOption(String name, String description, double price){
|
|
|
|
}
|
|
}//end ConfigurationOption
|