Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions S1API/PhoneCalls/CallStageEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ public class CallStageEntry
/// <summary>
/// @TODO: Docs
/// </summary>
protected readonly List<SystemTriggerEntry> StartTriggerEntries = new List<SystemTriggerEntry>();
protected readonly System.Collections.Generic.List<SystemTriggerEntry> StartTriggerEntries = new System.Collections.Generic.List<SystemTriggerEntry>();

// ReSharper disable once MemberCanBePrivate.Global
/// <summary>
/// @TODO: Docs
/// </summary>
protected readonly List<SystemTriggerEntry> DoneTriggerEntries = new List<SystemTriggerEntry>();
protected readonly System.Collections.Generic.List<SystemTriggerEntry> DoneTriggerEntries = new System.Collections.Generic.List<SystemTriggerEntry>();

/// <summary>
/// INTERNAL: Creates a stage entry from an in-game stage instance.
Expand Down
2 changes: 1 addition & 1 deletion S1API/PhoneCalls/PhoneCallDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public abstract class PhoneCallDefinition
/// <summary>
/// A list of all stage entries added to this phone call.
/// </summary>
protected readonly List<CallStageEntry> StageEntries = new List<CallStageEntry>();
protected readonly System.Collections.Generic.List<CallStageEntry> StageEntries = new System.Collections.Generic.List<CallStageEntry>();

/// <summary>
/// INTERNAL: Public constructor used for instancing a new <see cref="S1ScriptableObjects.PhoneCallData"/>
Expand Down
2 changes: 1 addition & 1 deletion S1API/Quests/Quest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public abstract class Quest : Saveable
/// <summary>
/// A list of all quest entries added to this quest.
/// </summary>
protected readonly List<QuestEntry> QuestEntries = new List<QuestEntry>();
protected readonly System.Collections.Generic.List<QuestEntry> QuestEntries = new System.Collections.Generic.List<QuestEntry>();

[SaveableField("QuestData")]
private readonly QuestData _questData;
Expand Down
Loading