11 lines
139 B
TypeScript
11 lines
139 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
|
|
export class GameStateService {
|
|
|
|
constructor() { }
|
|
}
|