mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
18 lines
279 B
TypeScript
18 lines
279 B
TypeScript
export interface rival {
|
|
collection: "rival";
|
|
|
|
play_style: number;
|
|
|
|
index: number;
|
|
rival_refid: string;
|
|
};
|
|
|
|
export interface rival_data {
|
|
play_style: number;
|
|
index: number;
|
|
|
|
qprodata: number[];
|
|
profile: (string | number)[];
|
|
pcdata: number[];
|
|
}
|