HanoiTornyai/Hanoitornyai/Korong.cs
Dávid Szilágyi fa2bbf5aba Orai
2024-02-08 10:04:50 +01:00

26 lines
647 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace Hanoitornyai
{
public class Korong
{
public Color szin { get; set; }
public float szelesseg { get; set; }
public float magassag { get; set; }
public float x { get; set; }
public float y { get; set; }
public int meretjelzo { get; set; }
public Korong(Color szin, int meretjelzo)
{
this.szin = szin;
this.meretjelzo = meretjelzo;
}
}
}