ÄÚµå : |
public class InternalBuyInfo : ArrayList
{
public InternalBuyInfo() // ¿©±â°¡ ÆÇ¸Å
{
Add( new GenericBuyInfo( typeof( JarHoney ), 3, 20, 0x9EC, 0 ) );
Add( new GenericBuyInfo( typeof( Beeswax ), 1, 20, 0x1422, 0 ) );
// Ãß°¡ÇϽ÷Á¸é À§ÀÇ Çü½ÄÀ»
// µû¶óÇϼ¼¿ä. typeof( ¾ÆÀÌÅÛÀÇ Å¬·¡½º¸í ),°¡°Ý,¼ö·®, ÆÇ¸Å¸ñ·Ï¿¡ ³»º¸ÀÏ ±×·¡ÇÈID, HUE ¼øÀÔ´Ï´Ù.
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()// ¿©±â°¡ ±¸ÀÔ
{
Add( typeof( JarHoney ), 1 );
Add( typeof( Beeswax ), 1 );
}
} |