Conditional Compilation
In Graphics, Conditional Compilation can be used for multi-platform engine
#if (PLATFORM == SWITCH)
return ...
#elif (PLATFORM == XBOX)
return ...
#endif
In Graphics, Conditional Compilation can be used for multi-platform engine
#if (PLATFORM == SWITCH)
return ...
#elif (PLATFORM == XBOX)
return ...
#endif