C4 Engine
C4 Engine API Documentation

Configurable::BuildSettingList

Defined in:  C4Configurable.h
Called to retrieve the settings for a configurable object.
Prototype

virtual void BuildSettingList(List<Setting> *settingList) const;

Parameters
settingList The list to which settings for the configurable object are added.
Description
The BuildSettingList function is called to retrieve the list of settings for a configurable object. An override implementation of this function should allocate a new Setting object corresponding to each setting and add it to the list specified by the settingList parameter using the ListElement::AppendListElement function.
See Also

Configurable::CommitSetting

ConfigurationWidget

Setting