game-educationnal-objective.component.ts 465 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-educationnal-objective',
  templateUrl: './game-educationnal-objective.component.html',
  styleUrls: ['./game-educationnal-objective.component.scss']
})
export class GameEducationnalObjectiveComponent 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

  onClickComments(): void {
    
  }

  onClickErase(): void {
    
  } 

Romain DELEAU's avatar
Romain DELEAU committed
25
}