25 lines
581 B
C#
25 lines
581 B
C#
|
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<Korong> korongok { get; set; }
|
|||
|
public Rud(Color szin)
|
|||
|
{
|
|||
|
this.szin = szin;
|
|||
|
korongok = new List<Korong>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|