More changes

This commit is contained in:
Bill 2022-03-30 12:50:58 -04:00
parent f8d01140ae
commit 15e35f9167
4 changed files with 14 additions and 21 deletions

View File

@ -1,5 +0,0 @@
export interface IBadgeItem
{
id: number;
badgeCode: string;
}

View File

@ -1,10 +1,10 @@
export class TradeState export class TradeState
{ {
public static TRADING_STATE_READY: number = 0; public static TRADING_STATE_READY: number = 0;
public static TRADING_STATE_RUNNING: number = 1; public static TRADING_STATE_RUNNING: number = 1;
public static TRADING_STATE_COUNTDOWN: number = 2; public static TRADING_STATE_COUNTDOWN: number = 2;
public static TRADING_STATE_CONFIRMING: number = 3; public static TRADING_STATE_CONFIRMING: number = 3;
public static TRADING_STATE_CONFIRMED: number = 4; public static TRADING_STATE_CONFIRMED: number = 4;
public static TRADING_STATE_COMPLETED: number = 5; public static TRADING_STATE_COMPLETED: number = 5;
public static TRADING_STATE_CANCELLED: number = 6; public static TRADING_STATE_CANCELLED: number = 6;
} }

View File

@ -1,7 +1,6 @@
export * from './FurniCategory'; export * from './FurniCategory';
export * from './FurnitureItem'; export * from './FurnitureItem';
export * from './GroupItem'; export * from './GroupItem';
export * from './IBadgeItem';
export * from './IBotItem'; export * from './IBotItem';
export * from './IFurnitureItem'; export * from './IFurnitureItem';
export * from './InventoryUtilities'; export * from './InventoryUtilities';

View File

@ -1,10 +1,9 @@
export class UnseenItemCategory export class UnseenItemCategory
{ {
public static FURNI: number = 1; public static FURNI: number = 1;
public static RENTABLE: number = 2; public static RENTABLE: number = 2;
public static PET: number = 3; public static PET: number = 3;
public static BADGE: number = 4; public static BADGE: number = 4;
public static BOT: number = 5; public static BOT: number = 5;
public static GAMES: number = 6; public static GAMES: number = 6;
public static _Str_12463: number[] = [ UnseenItemCategory.FURNI, UnseenItemCategory.RENTABLE, UnseenItemCategory.PET, UnseenItemCategory.BADGE, UnseenItemCategory.BOT ];
} }