game-context.component.ts 440 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-game-context',
  templateUrl: './game-context.component.html',
  styleUrls: ['./game-context.component.scss']
})
export class GameContextComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

Romain DELEAU's avatar
Romain DELEAU committed
15
  displayMenu: string = 'hide';
Romain DELEAU's avatar
Romain DELEAU committed
16 17 18 19 20 21 22 23 24 25 26 27 28

  onClickComments(): void {
    
  }

  onClickErase(): void {
    
  } 

  onClickDots(): void {
    
  }

Romain DELEAU's avatar
Romain DELEAU committed
29
}