Working MVP code for Valentines
This commit is contained in:
committed by
Michal Pikulski
parent
ad8338f37e
commit
e9d528d837
@@ -219,6 +219,9 @@ namespace AppleHills.Core.Settings
|
||||
/// </summary>
|
||||
public interface IFortFightSettings
|
||||
{
|
||||
// Slingshot Configuration
|
||||
Common.Input.SlingshotConfig SlingshotSettings { get; }
|
||||
|
||||
// Block configurations
|
||||
System.Collections.Generic.List<Minigames.FortFight.Settings.BlockMaterialConfig> MaterialConfigs { get; }
|
||||
System.Collections.Generic.List<Minigames.FortFight.Settings.BlockSizeConfig> SizeConfigs { get; }
|
||||
@@ -279,4 +282,29 @@ namespace AppleHills.Core.Settings
|
||||
Minigames.FortFight.Settings.BlockMaterialConfig GetMaterialConfig(Minigames.FortFight.Data.BlockMaterial material);
|
||||
Minigames.FortFight.Settings.BlockSizeConfig GetSizeConfig(Minigames.FortFight.Data.BlockSize size);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Interface for Airplane minigame settings
|
||||
/// </summary>
|
||||
public interface IAirplaneSettings
|
||||
{
|
||||
// Slingshot Configuration
|
||||
Common.Input.SlingshotConfig SlingshotSettings { get; }
|
||||
|
||||
// Flight Settings
|
||||
float AirplaneMass { get; }
|
||||
float MaxFlightTime { get; }
|
||||
|
||||
// Camera Settings
|
||||
float CameraFollowSmoothing { get; }
|
||||
float FlightCameraZoom { get; }
|
||||
|
||||
// Timing
|
||||
float IntroDuration { get; }
|
||||
float PersonIntroDuration { get; }
|
||||
float EvaluationDuration { get; }
|
||||
|
||||
// Debug
|
||||
bool ShowDebugLogs { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user