コード例 #1
0
        void OnEnable()
        {
            Bootstrap.AddInitSystem <TurnBeginSystem>();

            Bootstrap.AddSimSystem <PlayerTurnSystem>();
            Bootstrap.AddSimSystem <MonsterTurnSystem>();

            Bootstrap.AddSimSystem <MapInputSystem>();
            Bootstrap.AddSimSystem <GenerateMapSystem>();
            Bootstrap.AddSimSystem <UpdateMapStateSystem>();
            Bootstrap.AddSimSystem <VisibilitySystem>();

            Bootstrap.AddSimSystem <ChangeMonsterCountSystem>();

            Bootstrap.AddLateSimSystem <CombatSystem>();
            Bootstrap.AddLateSimSystem <DeathSystem>();
            Bootstrap.AddLateSimSystem <TurnEndSystem>();

            Bootstrap.AddRenderSystem <RenderSystem>();
        }