Text.js 167 B

12345678910111213
  1. "use strict";
  2. function Text(src)
  3. {
  4. Object2D.call(this);
  5. }
  6. Text.prototype = Object.create(Object2D.prototype);
  7. Text.prototype.draw = function(context)
  8. {
  9. //TODO
  10. };