-
-
Save todorok1/09ff6aefc319389d3d501f7a45992c91 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第112回 定義データをロードするクラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace SimpleRpg | |
| { | |
| /// <summary> | |
| /// 定義データをロードするクラスです。 | |
| /// </summary> | |
| public static class ResourceLoader | |
| { | |
| /// <summary> | |
| /// 定義データをロードします。 | |
| /// </summary> | |
| public static void LoadDefinitionData() | |
| { | |
| CharacterDataManager.LoadCharacterData(); | |
| CharacterDataManager.LoadExpTables(); | |
| CharacterDataManager.LoadParameterTables(); | |
| EnemyDataManager.LoadEnemyData(); | |
| ItemDataManager.LoadItemData(); | |
| MagicDataManager.LoadMagicData(); | |
| MapDataManager.LoadMapData(); | |
| SaveDataHolder.Load(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment