feat(Core/Player): Implement player specific settings (#9483)

This commit is contained in:
Skjalf 2021-12-26 08:39:15 -03:00 committed by GitHub
parent d2950b21b9
commit 58302e4196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 381 additions and 8 deletions

View file

@ -61,6 +61,7 @@ void AddSC_titles_commandscript();
void AddSC_wp_commandscript();
void AddSC_cache_commandscript();
void AddSC_item_commandscript();
void AddSC_player_settings_commandscript();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -111,4 +112,5 @@ void AddCommandsScripts()
AddSC_wp_commandscript();
AddSC_cache_commandscript();
AddSC_item_commandscript();
AddSC_player_settings_commandscript();
}