mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
cleaned CallForHelpCategoryData
This commit is contained in:
parent
b7a10a578e
commit
49d684c3a7
@ -3,7 +3,7 @@ import { IMessageDataWrapper } from '../../../../../../core/communication/messag
|
||||
export class CallForHelpCategoryData
|
||||
{
|
||||
private _name: string;
|
||||
private _topics: _Str_3509[];
|
||||
private _topics: CallForHelpTopicData[];
|
||||
|
||||
constructor(wrapper: IMessageDataWrapper)
|
||||
{
|
||||
@ -19,21 +19,26 @@ export class CallForHelpCategoryData
|
||||
this._topics.push({
|
||||
name,
|
||||
id,
|
||||
_Str_18308: unknown
|
||||
consequence: unknown
|
||||
});
|
||||
i++;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public get topics(): _Str_3509[]
|
||||
public get topics(): CallForHelpTopicData[]
|
||||
{
|
||||
return this._topics;
|
||||
}
|
||||
|
||||
public get name(): string
|
||||
{
|
||||
return this._name;
|
||||
}
|
||||
}
|
||||
|
||||
interface _Str_3509 {
|
||||
interface CallForHelpTopicData {
|
||||
name: string;
|
||||
id: number;
|
||||
_Str_18308: string;
|
||||
consequence: string;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user