parent
d11ba253c5
commit
4e40489454
@ -1,14 +0,0 @@
|
|||||||
import { Skin } from "./core/skin";
|
|
||||||
|
|
||||||
let tabSkinApp:Skin[]=[
|
|
||||||
new Skin("0001", "Bob Classsique",require('bob_party/assets/BobsSkins/BobClassic.png')),
|
|
||||||
new Skin("0002", "Bob Blue",require('bob_party/assets/BobsSkins/BobBlue.png')),
|
|
||||||
new Skin("0003", "Bob BW",require('bob_party/assets/BobsSkins/BobBW.png')),
|
|
||||||
new Skin("0004", "Bob Green",require('bob_party/assets/BobsSkins/BobGreen.png')),
|
|
||||||
new Skin("0005", "Bob Pink Turquoise",require('bob_party/assets/BobsSkins/BobPinkTurquoise.png')),
|
|
||||||
new Skin("0006", "Bob Red",require('bob_party/assets/BobsSkins/BobRed.png')),
|
|
||||||
new Skin("0007", "Bob Cute",require('bob_party/assets/BobsSkins/BobYellowGreenBlueHeart.png')),
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
export default tabSkinApp;
|
|
@ -0,0 +1,14 @@
|
|||||||
|
import { Skin } from "./core/skin";
|
||||||
|
|
||||||
|
let tabSkinApp:Skin[]=[
|
||||||
|
new Skin("S0001", "Bob Classsique",require('bob_party/assets/BobsSkins/BobClassic.png')),
|
||||||
|
new Skin("S0002", "Bob Blue",require('bob_party/assets/BobsSkins/BobBlue.png')),
|
||||||
|
new Skin("S0003", "Bob BW",require('bob_party/assets/BobsSkins/BobBW.png')),
|
||||||
|
new Skin("S0004", "Bob Green",require('bob_party/assets/BobsSkins/BobGreen.png')),
|
||||||
|
new Skin("S0005", "Bob Pink Turquoise",require('bob_party/assets/BobsSkins/BobPinkTurquoise.png')),
|
||||||
|
new Skin("S0006", "Bob Red",require('bob_party/assets/BobsSkins/BobRed.png')),
|
||||||
|
new Skin("S0007", "Bob Cute",require('bob_party/assets/BobsSkins/BobYellowGreenBlueHeart.png')),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
export default tabSkinApp;
|
@ -1,5 +1,10 @@
|
|||||||
|
import { ImageSourcePropType } from 'react-native';
|
||||||
import { Game } from './game'
|
import { Game } from './game'
|
||||||
|
|
||||||
export class GameSolo extends Game{
|
export class GameSolo extends Game{
|
||||||
readonly [index:number]:number;
|
readonly [Index:number]:number;
|
||||||
|
|
||||||
|
constructor(name:string, imageSource:ImageSourcePropType, gameSource:string, [index:number]:number){
|
||||||
|
super(name, imageSource, gameSource);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in new issue