-
-
Save todorok1/101c9e1b875b8ccb1de43f88cab7bc4b to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第109回 定義データをロードするクラス
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(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment