mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-26 23:50:52 +01:00
More changes
This commit is contained in:
parent
f8d01140ae
commit
15e35f9167
@ -1,5 +0,0 @@
|
||||
export interface IBadgeItem
|
||||
{
|
||||
id: number;
|
||||
badgeCode: string;
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
export class TradeState
|
||||
{
|
||||
public static TRADING_STATE_READY: number = 0;
|
||||
public static TRADING_STATE_RUNNING: number = 1;
|
||||
public static TRADING_STATE_COUNTDOWN: number = 2;
|
||||
public static TRADING_STATE_CONFIRMING: number = 3;
|
||||
public static TRADING_STATE_CONFIRMED: number = 4;
|
||||
public static TRADING_STATE_COMPLETED: number = 5;
|
||||
public static TRADING_STATE_CANCELLED: number = 6;
|
||||
public static TRADING_STATE_READY: number = 0;
|
||||
public static TRADING_STATE_RUNNING: number = 1;
|
||||
public static TRADING_STATE_COUNTDOWN: number = 2;
|
||||
public static TRADING_STATE_CONFIRMING: number = 3;
|
||||
public static TRADING_STATE_CONFIRMED: number = 4;
|
||||
public static TRADING_STATE_COMPLETED: number = 5;
|
||||
public static TRADING_STATE_CANCELLED: number = 6;
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
export * from './FurniCategory';
|
||||
export * from './FurnitureItem';
|
||||
export * from './GroupItem';
|
||||
export * from './IBadgeItem';
|
||||
export * from './IBotItem';
|
||||
export * from './IFurnitureItem';
|
||||
export * from './InventoryUtilities';
|
||||
|
@ -1,10 +1,9 @@
|
||||
export class UnseenItemCategory
|
||||
{
|
||||
public static FURNI: number = 1;
|
||||
public static RENTABLE: number = 2;
|
||||
public static PET: number = 3;
|
||||
public static BADGE: number = 4;
|
||||
public static BOT: number = 5;
|
||||
public static GAMES: number = 6;
|
||||
public static _Str_12463: number[] = [ UnseenItemCategory.FURNI, UnseenItemCategory.RENTABLE, UnseenItemCategory.PET, UnseenItemCategory.BADGE, UnseenItemCategory.BOT ];
|
||||
public static FURNI: number = 1;
|
||||
public static RENTABLE: number = 2;
|
||||
public static PET: number = 3;
|
||||
public static BADGE: number = 4;
|
||||
public static BOT: number = 5;
|
||||
public static GAMES: number = 6;
|
||||
}
|
Loading…
Reference in New Issue
Block a user