using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hanoitornyai { public class Rud { 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 List korongok { get; set; } public Rud(Color szin) { this.szin = szin; korongok = new List(); } } }