mirror of
https://forge.murkfall.net/bluesaxman/librePECS.git
synced 2026-03-13 02:04:20 -06:00
14 lines
413 B
JavaScript
14 lines
413 B
JavaScript
|
|
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 };
|