FontRes.js 127 B

12345678
  1. class FontRes
  2. {
  3. constructor(name = "", p5Font = null)
  4. {
  5. this.name = name;
  6. this.P5Font = p5Font;
  7. }
  8. }