blob: 7e646625914393b0e9be3c88fa5bdcbf006ea108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace XMainClient
{
internal class AuctionSaleItem : AuctionItem
{
public bool isOutTime
{
get
{
return this.duelefttime == 0u;
}
}
public uint duelefttime;
}
}
|