mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-22 22:27:56 +03:00
Implement rival registration, profile responses, and Web UI controls. The UI is functional only; visual design and polish are not included in this change.
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
export interface Rival {
|
|
collection: 'rival';
|
|
|
|
game: 'gf' | 'dm';
|
|
version: string;
|
|
rival_refid: string;
|
|
slot: number;
|
|
}
|