mirror of
https://forge.murkfall.net/bluesaxman/librePECS.git
synced 2026-03-13 02:04:20 -06:00
broke out library to its own js file and implimented modules
This commit is contained in:
13
library.js
Normal file
13
library.js
Normal file
@@ -0,0 +1,13 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user