forked from s425077/PotatoPlan
19 lines
266 B
C#
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()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|