Files
Greed/WinGreed/GameOverCheck.cs
2022-07-14 11:50:31 +02:00

21 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinGreed
{
public class GameOverCheck
{
public GameOverCheck()
{
this.lvsave = null;
this.points = 0;
}
public ListViewItem lvsave { get; set; }
public int points { get; set; }
}
}