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,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

@ -6,5 +6,4 @@ export class UnseenItemCategory
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 ];
} }