Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
weeeBox committed Dec 20, 2016
1 parent e12d9ef commit 94d4761
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Project/Assets/LunarPlugin/Editor/Console/CConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

namespace LunarEditor
{
class Console : CAbstractConsole
class CConsole : CAbstractConsole
{
public Console(int capacity)
public CConsole(int capacity)
: base(capacity)
{
}
Expand Down Expand Up @@ -91,9 +91,9 @@ public override void Destroy()
#endregion
}

internal class FormattedConsole : Console
internal class CFormattedConsole : CConsole
{
public FormattedConsole(int capacity)
public CFormattedConsole(int capacity)
: base(capacity)
{
}
Expand Down

0 comments on commit 94d4761

Please sign in to comment.