Compare commits

..

No commits in common. "26b5056bcde76c21eaa61cfa073ab2482b969718" and "81304c57242fcc4335ecc7c66df4fc2eead6be10" have entirely different histories.

8 changed files with 21 additions and 33 deletions

1
.gitattributes vendored
View File

@ -1,2 +1 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text

View File

@ -18,4 +18,8 @@ export class AppComponent {
});
//GetVersion();
}
RunGame() {
//RunGame();
}
}

View File

@ -1,13 +1,20 @@
<h1>{{game.title}}</h1>
<p>{{game.description}}</p>
<ng-template #icon>
<tui-avatar
size="xs"
[rounded]="true"
[avatarUrl]="'http://jpg.jpg'"
></tui-avatar>
</ng-template>
<button
tuiButton
type="button"
appearance="primary"
[icon]="icon"
class="tui-space_right-3 tui-space_bottom-3"
(click)= "runGame()"
>
Launch
<ng-content></ng-content>
</button>

View File

@ -1,22 +1,3 @@
<!-- <div class="game" [ngClass]="{'active': active}">
<div class="game" [ngClass]="{'active': active}">
<div class="game-title">{{game.title}}</div>
</div> -->
<ng-template #icon>
<tui-avatar
size="xs"
[rounded]="true"
[avatarUrl]="'./assets/games-icons/' + game.image"
></tui-avatar>
</ng-template>
<button
tuiButton
type="button"
appearance="primary"
[icon]="icon"
class="tui-space_right-3 tui-space_bottom-3"
class="game"
[ngClass]="{'active': active}"
>
{{game.title}}
<ng-content></ng-content>
</div>

View File

@ -1,7 +1,7 @@
export interface Game {
id: number; //TODO: Заменить на строку
gameId: string
title: string;
image: string;
description: string;
}
id: string;
title: string;
image: string;
description: string;
}

View File

@ -15,9 +15,6 @@ export class LauncherService {
public RunGame(game: Game){
//console.log(game)
GoRunGame(game.gameId)
// console.log(game)
// console.log(game.title)
// console.log(game.gameId)
GoRunGame(game.id)
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB