Alles commited (inf3.csproj & Buffer_Wafa)

This commit is contained in:
Wafa Sadri
2014-04-16 14:54:00 +02:00
parent 18a258c4ef
commit d76075cddb
2 changed files with 3 additions and 2 deletions

View File

@@ -68,6 +68,7 @@
<Compile Include="src\EnumDecision.cs" />
<Compile Include="src\Online.cs" />
<Compile Include="src\Time.cs" />
<Compile Include="src\Buffer_Wafa.cs" />
</ItemGroup>
<ItemGroup />
</Project>

View File

@@ -3,12 +3,12 @@ using System.Collections.Generic;
namespace WorldOfPeacecraft
{
public class Buffer
public class Buffer_Wafa
{
private Queue<string> DotA2 = new Queue<string> ();
private int sizelimit;
public Buffer (int limit)
public Buffer_Wafa (int limit)
{
sizelimit = limit;
}