setC method

FontC setC(
  1. FontC o
)

Implementation

FontC setC(FontC o) {
  baseSize = o.baseSize;
  glyphCount = o.glyphCount;
  glyphPadding = o.glyphPadding;
  texture.setC(o.texture);
  recs = o.recs;
  glyphs = o.glyphs;
  return this;
}