Before 6.4 upgrade
This commit is contained in:
@@ -18,6 +18,7 @@ namespace BriarQueen.Data.Identifiers
|
||||
public enum LevelInteractKey
|
||||
{
|
||||
None = 0,
|
||||
MarketplaceFirstEntry
|
||||
}
|
||||
|
||||
public enum EnvironmentInteractKey
|
||||
@@ -32,6 +33,7 @@ namespace BriarQueen.Data.Identifiers
|
||||
AshwickBlockedRidgwayRoad = 7,
|
||||
AshwickRidgewaySkeleton = 8,
|
||||
AskwickMarketplaceSign = 9,
|
||||
FirstSkeleton = 10,
|
||||
}
|
||||
|
||||
public enum UIInteractKey
|
||||
@@ -60,6 +62,7 @@ namespace BriarQueen.Data.Identifiers
|
||||
new ReadOnlyDictionary<LevelInteractKey, string>(
|
||||
new Dictionary<LevelInteractKey, string>
|
||||
{
|
||||
{ LevelInteractKey.MarketplaceFirstEntry, "I wonder if any of these are unlocked."}
|
||||
});
|
||||
|
||||
public static readonly IReadOnlyDictionary<EnvironmentInteractKey, string> EnvironmentInteractions =
|
||||
@@ -72,7 +75,8 @@ namespace BriarQueen.Data.Identifiers
|
||||
{ EnvironmentInteractKey.FireHot, "Too hot to get close." },
|
||||
{ EnvironmentInteractKey.AshwickHallowSign, "Ashwick Hallow… Even the name feels like a warning."},
|
||||
{ EnvironmentInteractKey.AshwickRidgewayStatue, "Lovely sculpture. Mildly terrifying, but lovely."},
|
||||
{ EnvironmentInteractKey.AshwickBlockedRidgwayRoad, "Right. Closed road. Of course it is."}
|
||||
{ EnvironmentInteractKey.AshwickBlockedRidgwayRoad, "Right. Closed road. Of course it is."},
|
||||
{ EnvironmentInteractKey.FirstSkeleton, "What the hell happened here?"}
|
||||
});
|
||||
|
||||
public static readonly IReadOnlyDictionary<UIInteractKey, string> UIInteractions =
|
||||
|
||||
Reference in New Issue
Block a user