raysan5 / raylib-game-template

A small template to start your raylib game
zlib License
420 stars 101 forks source link

[Visual Studio Project] Don't force C complication #11

Closed JeffM2501 closed 1 year ago

JeffM2501 commented 1 year ago

The project in the template has the compiler setting to force all files to compile as C, even if they are C++. This does not allow a user to extend this template into C++ if they desire.

This PR restores this setting to the default, allowing files to be compiled based on the file type, allowing both C and C++ code.

raysan5 commented 1 year ago

@JeffM2501 Thanks for the review! I usually work in C, so my projects are usually configured to be compiled in C.