mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:53:41 +00:00
26 lines
1.8 KiB
C
26 lines
1.8 KiB
C
#pragma once
|
|
#include "ConsoleGameRulesConstants.h"
|
|
#include "GameRuleManager.h"
|
|
#include "app/common/GameRules/LevelGeneration/ApplySchematicRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelGeneration/BiomeOverride.h"
|
|
#include "app/common/GameRules/LevelGeneration/ConsoleGenerateStructure.h"
|
|
#include "app/common/GameRules/LevelGeneration/ConsoleGenerateStructureAction.h"
|
|
#include "app/common/GameRules/LevelGeneration/LevelGenerationOptions.h"
|
|
#include "app/common/GameRules/LevelGeneration/StartFeature.h"
|
|
#include "app/common/GameRules/LevelGeneration/StructureActions/XboxStructureActionGenerateBox.h"
|
|
#include "app/common/GameRules/LevelGeneration/StructureActions/XboxStructureActionPlaceBlock.h"
|
|
#include "app/common/GameRules/LevelGeneration/StructureActions/XboxStructureActionPlaceContainer.h"
|
|
#include "app/common/GameRules/LevelGeneration/StructureActions/XboxStructureActionPlaceSpawner.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/AddEnchantmentRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/AddItemRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/CollectItemRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/CompleteAllRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/CompoundGameRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/GameRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/LevelRuleset.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/NamedAreaRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/UpdatePlayerRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/RuleDefinitions/UseTileRuleDefinition.h"
|
|
#include "app/common/GameRules/LevelRules/Rules/GameRule.h"
|
|
#include "app/common/GameRules/LevelRules/Rules/GameRulesInstance.h"
|