bonhomeExamJanvier/Bonhomme02/BaseBJ.cs

30 lines
565 B
C#

/*
* Base des objets Bras et jambe
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bonhomme02
{
class BaseBJ
{
Peau Haut, Millieux, Bas, parent;
double angleHaut, angleMillieux, angleBas;
public BaseBJ()
{
}
public BaseBJ(ref Peau parent, ref Peau bas, double epaisseur)
{
this.parent = parent;
Bas = bas;
angleHaut = angleMillieux = angleBas = 0;
}
}
}