| 80 | } |
| 81 | |
| 82 | void ModuleSaveData::SetInt(std::string prop, int val) |
| 83 | { |
| 84 | SaveVal* save = GetVal(prop); |
| 85 | assert(save && save->mType == kInt); |
| 86 | save->mInt = val; |
| 87 | } |
| 88 | |
| 89 | void ModuleSaveData::SetInt(std::string prop, int val, int min, int max, bool isTextField) |
| 90 | { |
no outgoing calls