Scenes Demo Application Tutorial
This is an exampe similar to Basic_Scenes but with the files broken out into separate .c and .h files.
- The
statickeyword is used on functions that do not need to be visible beyond their own .c file. #pragma onceis used to prevent the header file from being imported multiple times.- We don't use the typical
typedef struct App Apppattern inbasic_scenes_split.hbecause the various scenes access properties of theAppobject.