1
0
Fork 0
JoelForkTest/Game1/Sources/Queue.cs

19 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Game1.Sources
{
class Queue
{
private Task[] task;
public void Sort()
{
}
}
}