Edit: (that it's for old c#, c++ has another way of doing things and I commented with a lot of ignorance, ignore me.)
What you say is true, but still, struct shows in most cases, about 10 times more performance than using class, there are conferences that talk about this, data oriented programming is more difficult to understand and many times to implement, but it really makes a difference when it comes to low latency, because the cpu is designed to work data oriented, and in fact, new cpu's are not "faster" in every sense of the word, they have more cores, there are also conferences that talk about cpu's being slower working small data.
I summarize it like this, a ferrari carrying a single person is faster than a truck, but if you put a ferrari in competition with a truck of who carries 1 ton from one city to another, certainly the truck will have the advantage and statistically it will be faster, new cpu's are like trucks, more powerful, but not necessarily faster.
Modern games are slow in this context, they are more powerful and faster like a truck carrying a ton but slow carrying a single person, they all have a high latency and their responses are slow. It is not the same to have 1000 frames per second in a 2010 cpu, where each frame is rendered every 0.1 ms continuously, and varies very few times, to have a modern cpu that renders 2000 or 3000 fps, but varies between 0.05ms to 4 ms, ie, for seconds it will seem faster, but there will be time where it will be slower, this will lead to be more prone to errors in calculations, and as is well known .... leads to clear errors in collisions and animations based on keyframes, this is common in modern games, even unreal engine often crashes out of nowhere in most modern cpu's, just like 3dsmax, modern cpu's are more prone to errors.
This is more noticeable in competitive games where the response of this type makes the difference, or if we go to something simpler, in platform games like Mario bros, it is incredible that a supernintendo game running on a supernintendo has a faster response with the buttons of your joystick, Imagine, pressing the jump key accurately and precisely, and the cpu does not load it instantly, or the loading times vary, you will lose, and not because of your lack of skill, but because of how invariable the performance of modern cpu's is, which will lead the player to frustration.
I remember when windows 10 came out, it was slower and did not run directx9 applications, damn, now if you want to program, you have to make an app for windows 7, and another for windows 10, because if you do it only for windows 7, it is likely that the new driver will not run on windows 10, and the same happens for windows 7, stupid industry, it does everything wrong, all for the money. In fact to this day there are problems to run old games on modern computers, like age of empires for directdraw, or warcraft 3 reign of chaos and need for speed carbon in sound for directx9 on windows 10.
I work my apps for high performance and low latency, because in many parts of the world there are poor people with old computers, and these problems are noticeable in them.
Regarding the topic of low latency and data-driven programming, it is often discussed at cppcon:
https://www.youtube.com/watch?v=yy8jqgmhbau
https://www.youtube.com/watch?v=Rx0itvevjhc
Regarding the CPU, Herb Sutter talks about it in "High Performance & Low Latency C++ Introduction and Fundamentals Herb Sutter".
https://alfasoft.com/files/herb/00-intropion.pdf
In unity there is also a noticeable difference in performance:
https://www.youtube.com/watch?v=0VQyWo-gb2c
