Skip to content

Commit

Permalink
little clean
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsycore committed Jun 23, 2019
1 parent 8284f79 commit 128323a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 5 additions & 1 deletion PassCoder/Chaos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
{
public class Chaos
{
private readonly uint _seedSave;
private uint _actualRank;
private uint _seedSave;

private readonly uint[] _rndArray =
{
Expand Down Expand Up @@ -593,6 +593,10 @@ public Chaos(uint seed)
_actualRank = _seedSave % (uint)_rndArray.Length;
}

public uint GetSeed()
{
return _seedSave;
}

public uint Rand()
{
Expand Down
5 changes: 0 additions & 5 deletions PassCoder/PhraseProcessed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,10 @@ public class PhraseProcessed
public readonly ValuedSymboleList _blendedSymboleList = new ValuedSymboleList(Constante.AllSymbole);

public StringBuilder _base = new StringBuilder();
public StringBuilder _baseOffseted = new StringBuilder();

public UniqueSymbolePool _poolLetter = new UniqueSymbolePool(Constante.LetterSymbole);
public UniqueSymbolePool _poolFigure = new UniqueSymbolePool(Constante.FigureSymbole);

public char[] _usedLetter = new char[Constante.LetterSymbole.Length()];
public char[] _usedSymbole = new char[Constante.SpecialSymbole.Length()];
public char[] _usedFigure = new char[Constante.FigureSymbole.Length()];

public PhraseProcessed(string name)
{
Console.WriteLine();
Expand Down

0 comments on commit 128323a

Please sign in to comment.