|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
@ -6,7 +7,17 @@ using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
{
|
|
|
|
|
internal class Manager
|
|
|
|
|
public class Manager
|
|
|
|
|
{
|
|
|
|
|
List<Die> listDices = new List<Die>();
|
|
|
|
|
|
|
|
|
|
public void AddDice(Die d)
|
|
|
|
|
{
|
|
|
|
|
listDices.Add(d);
|
|
|
|
|
}
|
|
|
|
|
public void RemoveDice(Die d)
|
|
|
|
|
{
|
|
|
|
|
listDices.Remove(d);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|