Skip to content

Commit

Permalink
static
Browse files Browse the repository at this point in the history
  • Loading branch information
tfloxolodeiro committed Oct 4, 2023
1 parent e11c368 commit 68aa9a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/escenas/libroPrimaria/EscenaCapy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
class EscenaCapy extends EscenaDesdeMapa {
automata: Capy;

clasesDeActoresInvolucrados(): typeof ActorAnimado[] {
static clasesDeActoresInvolucrados(): typeof ActorAnimado[] {
return [Capy, Tacho, Lata, Papel];
};

static pathFondo(): string {
return 'fondo.capy.png';
}

imagenesAdicionales(): string[] {
static imagenesAdicionales(): string[] {
return Casilla.imagenesPara('capy').concat(Obstaculo.imagenesPara('capy'));
}

Expand Down
4 changes: 2 additions & 2 deletions src/escenas/libroPrimaria/EscenaCapySolo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ class EscenaCapySolo extends EscenaCapy {

automata: CapySolo;

clasesDeActoresInvolucrados(): typeof ActorAnimado[] {
return super.clasesDeActoresInvolucrados().concat([CapySolo, Guyra])
static clasesDeActoresInvolucrados(): typeof ActorAnimado[] {
return EscenaCapy.clasesDeActoresInvolucrados().concat([CapySolo, Guyra])
};

obtenerAutomata(): CapySolo {
Expand Down

0 comments on commit 68aa9a1

Please sign in to comment.