mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
WIP preserve local changes before duckie merge
This commit is contained in:
@@ -65,6 +65,12 @@ export class GroupItem
|
||||
this.setDescription();
|
||||
}
|
||||
|
||||
public refreshLocalization(): void
|
||||
{
|
||||
this.setName();
|
||||
this.setDescription();
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
export interface INickIconItem
|
||||
{
|
||||
id: number;
|
||||
iconKey: string;
|
||||
displayName: string;
|
||||
points: number;
|
||||
pointsType: number;
|
||||
owned: boolean;
|
||||
active: boolean;
|
||||
}
|
||||
@@ -1,9 +1,15 @@
|
||||
export interface IPrefixItem
|
||||
{
|
||||
id: number;
|
||||
displayName?: string;
|
||||
text: string;
|
||||
color: string;
|
||||
icon: string;
|
||||
effect: string;
|
||||
font?: string;
|
||||
active: boolean;
|
||||
isCustom?: boolean;
|
||||
points?: number;
|
||||
pointsType?: number;
|
||||
catalogPrefixId?: number;
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ export * from './FurnitureUtilities';
|
||||
export * from './GroupItem';
|
||||
export * from './IBotItem';
|
||||
export * from './IFurnitureItem';
|
||||
export * from './INickIconItem';
|
||||
export * from './IPetItem';
|
||||
export * from './IPrefixItem';
|
||||
export * from './IUnseenItemTracker';
|
||||
|
||||
Reference in New Issue
Block a user