Synodic-Software / Soul-Engine

Physically based renderer and simulation engine for real-time applications.
GNU General Public License v3.0
42 stars 24 forks source link

Update Types.h #226

Closed Behemyth closed 6 years ago

Behemyth commented 6 years ago

In Soul Engine\Source\Core\Utility\Types.h some helpful engine values are defined as #define KILOMETER 100. These values can be updated as constexpr KILOMETER = 100;

The types like typedef unsigned char uint8; can be updated to using uint8 = unsigned char;

These are both the modern equivalents. There may be some compilation errors after these changes, fix them.