You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
511 B
28 lines
511 B
using System;
|
|
|
|
namespace OrderStacks.model.card.rapidCard
|
|
{
|
|
public class ThreeCard : RapidCard
|
|
{
|
|
/**
|
|
* Type de carte
|
|
*/
|
|
public static readonly string CARD_THREE = "ThreeCard";
|
|
|
|
/**
|
|
* <param name="value">Valeur de la carte</param>
|
|
* Constructeur
|
|
*/
|
|
public ThreeCard(int value)
|
|
:base(value)
|
|
{
|
|
}
|
|
|
|
override public string getName()
|
|
{
|
|
return CARD_THREE;
|
|
}
|
|
|
|
}
|
|
}
|