Fix touch shooting and typo

This commit is contained in:
schmelczerandras 2020-11-02 11:12:03 +01:00
parent 1c4b7a3483
commit f7420777f0
10 changed files with 59 additions and 60 deletions

View file

@ -8,7 +8,7 @@ export class CommandGenerator {
this.subscribers.push(subscriber);
}
protected sendCommandToSubcribers(command: Command): void {
protected sendCommandToSubscribers(command: Command): void {
this.subscribers.forEach((s) => s.sendCommand(command));
}
}