Skip to content

Commit

Permalink
Certain private fields have been reasigned to public.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagord committed Jan 1, 2024
1 parent cdf77ac commit ad7cd6a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ namespace PulsarModLoader.Content.Components.AutoTurret
/// </summary>
public class AutoTurretModManager
{
readonly int VanillaAutoTurretMaxType = 0;
public readonly int VanillaAutoTurretMaxType = 0;
private static AutoTurretModManager m_instance = null;
readonly List<AutoTurretMod> AutoTurretTypes = new List<AutoTurretMod>();
public readonly List<AutoTurretMod> AutoTurretTypes = new List<AutoTurretMod>();

/// <summary>
/// Static Manager Instance
Expand Down
4 changes: 2 additions & 2 deletions PulsarModLoader/Content/Components/CPU/CPUModManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ namespace PulsarModLoader.Content.Components.CPU
/// </summary>
public class CPUModManager
{
readonly int VanillaCPUMaxType = 0;
public readonly int VanillaCPUMaxType = 0;
private static CPUModManager m_instance = null;
readonly List<CPUMod> CPUTypes = new List<CPUMod>();
public readonly List<CPUMod> CPUTypes = new List<CPUMod>();

/// <summary>
/// Static Manager Instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ namespace PulsarModLoader.Content.Components.CaptainsChair
/// </summary>
public class CaptainsChairModManager
{
readonly int VanillaCaptainsChairMaxType = 0;
public readonly int VanillaCaptainsChairMaxType = 0;
private static CaptainsChairModManager m_instance = null;
readonly List<CaptainsChairMod> CaptainsChairTypes = new List<CaptainsChairMod>();
public readonly List<CaptainsChairMod> CaptainsChairTypes = new List<CaptainsChairMod>();

/// <summary>
/// Static Manager Instance.
Expand Down

0 comments on commit ad7cd6a

Please sign in to comment.