Skip to content

Commit d3910d8

Browse files
committed
change access modifier of internal mods to public
1 parent 1f9b429 commit d3910d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

osu.Game.Rulesets.Osu/Mods/OsuModGrow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace osu.Game.Rulesets.Osu.Mods
99
{
10-
internal class OsuModGrow : OsuModObjectScaleTween
10+
public class OsuModGrow : OsuModObjectScaleTween
1111
{
1212
public override string Name => "Grow";
1313

osu.Game.Rulesets.Osu/Mods/OsuModRepel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace osu.Game.Rulesets.Osu.Mods
2121
{
22-
internal class OsuModRepel : Mod, IUpdatableByPlayfield, IApplicableToDrawableRuleset<OsuHitObject>
22+
public class OsuModRepel : Mod, IUpdatableByPlayfield, IApplicableToDrawableRuleset<OsuHitObject>
2323
{
2424
public override string Name => "Repel";
2525
public override string Acronym => "RP";

osu.Game.Rulesets.Osu/Mods/OsuModTransform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace osu.Game.Rulesets.Osu.Mods
1616
{
17-
internal class OsuModTransform : ModWithVisibilityAdjustment
17+
public class OsuModTransform : ModWithVisibilityAdjustment
1818
{
1919
public override string Name => "Transform";
2020
public override string Acronym => "TR";

osu.Game.Rulesets.Osu/Mods/OsuModWiggle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
namespace osu.Game.Rulesets.Osu.Mods
1717
{
18-
internal class OsuModWiggle : ModWithVisibilityAdjustment
18+
public class OsuModWiggle : ModWithVisibilityAdjustment
1919
{
2020
public override string Name => "Wiggle";
2121
public override string Acronym => "WG";

0 commit comments

Comments
 (0)