Files
librePECS/library.js

14 lines
413 B
JavaScript
Raw Normal View History

import { pec } from './pecslib.js';
// Populate Library
var library = [];
library.push(new pec("No","images/cards_conversation_no.svg"));
library.push(new pec("Up",""));
library.push(new pec("More",""));
library.push(new pec("Drink","images/cards_food_thirsty.svg"));
library.push(new pec("Food","images/cards_food_hungry.svg"));
library.push(new pec("Toy",""));
// add more here
export { library as library };