mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-03 18:24:12 +02:00
spechud fixes
This commit is contained in:
parent
1e2a3e28e7
commit
f5f553c446
3 changed files with 49 additions and 38 deletions
|
|
@ -10,10 +10,10 @@ export interface SpecHUDProps {
|
|||
kills: Kill[]
|
||||
}
|
||||
|
||||
export function SpecHUD({tick, parser, players, kills}: SpecHUDProps) {
|
||||
export function SpecHUD(props: SpecHUDProps) {
|
||||
return (<div class="spechud">
|
||||
<KillFeed tick={tick} kills={kills} players={players}/>
|
||||
<PlayersSpec players={players}/>
|
||||
<KillFeed tick={props.tick} kills={props.kills} players={props.players}/>
|
||||
<PlayersSpec players={props.players}/>
|
||||
</div>)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue