import { Injectable } from '@angular/core'; import {BehaviorSubject} from 'rxjs'; @Injectable({ providedIn: 'root' }) export class LevelService { public currentLevel = new BehaviorSubject(-1); constructor() { } }