ikt32 / GTAVManualTransmission

Manual Transmission for GTA V
https://www.gta5-mods.com/scripts/manual-transmission-ikt
187 stars 44 forks source link

Sfinktah cpp17 #129

Closed sfinktah closed 2 years ago

sfinktah commented 2 years ago

made compatible with v141 (vs2017), since that's all i have.

required a templated Vector3 to avoid

Vector3 v {
    .x = 0,
    // ...

Fancy cpp200 features

ikt32 commented 2 years ago

Thanks for the PR! The improved Vector3 stuff is neat, but I'll continue to use C++20 stuff where it's more convenient for me.

PulledResort commented 1 year ago

made compatible with v141 (vs2017), since that's all i have.

required a templated Vector3 to avoid

Vector3 v {
    .x = 0,
    // ...

Fancy cpp200 features

I needed this, you're the best.

sfinktah commented 1 year ago

Thanks for the PR! The improved Vector3 stuff is neat, but I'll continue to use C++20 stuff where it's more convenient for me.

Naturally. I wouldn't expect otherwise :)