Codechange: rename CargoID to CargoType and amend related variables/comments
This commit is contained in:
@@ -58,9 +58,9 @@ public:
|
||||
class ScriptIndustryList_CargoAccepting : public ScriptList {
|
||||
public:
|
||||
/**
|
||||
* @param cargo_id The cargo this industry should accept.
|
||||
* @param cargo_type The cargo this industry should accept.
|
||||
*/
|
||||
ScriptIndustryList_CargoAccepting(CargoID cargo_id);
|
||||
ScriptIndustryList_CargoAccepting(CargoType cargo_type);
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -72,9 +72,9 @@ public:
|
||||
class ScriptIndustryList_CargoProducing : public ScriptList {
|
||||
public:
|
||||
/**
|
||||
* @param cargo_id The cargo this industry should produce.
|
||||
* @param cargo_type The cargo this industry should produce.
|
||||
*/
|
||||
ScriptIndustryList_CargoProducing(CargoID cargo_id);
|
||||
ScriptIndustryList_CargoProducing(CargoType cargo_type);
|
||||
};
|
||||
|
||||
#endif /* SCRIPT_INDUSTRYLIST_HPP */
|
||||
|
||||
Reference in New Issue
Block a user