diff options
| author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-07-12 00:11:11 +0300 |
|---|---|---|
| committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-07-12 00:12:25 +0300 |
| commit | 2a6f9c27578c69742be7209d749780700453c8a1 (patch) | |
| tree | a4c9b38a4a9752f4ef315c3009f887e947e9b334 /src/extras | |
| parent | Add PED DENSITY and CAR DENSITY lines to GXT (diff) | |
| download | re3-2a6f9c27578c69742be7209d749780700453c8a1.tar.gz | |
Add ped and car density slider to menu, remove dumb collision "optimization"
Diffstat (limited to 'src/extras')
| -rw-r--r-- | src/extras/frontendoption.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/extras/frontendoption.h b/src/extras/frontendoption.h index 8b64335a..a571170f 100644 --- a/src/extras/frontendoption.h +++ b/src/extras/frontendoption.h @@ -40,6 +40,8 @@ typedef void (*ReturnPrevPageFunc)(); typedef void (*ChangeFunc)(int8 before, int8 after); // called after updating the value. // only called on enter if onlyApplyOnEnter set, otherwise called on every value change +typedef void (*ChangeFuncFloat)(float before, float after); // called after updating the value. + // for dynamic options typedef wchar* (*DrawFunc)(bool* disabled, bool userHovering); // you must return a pointer for right text. // you can also set *disabled if you want to gray it out. |
