@@ -0,0 +1,13 @@
+"use strict";
+
+function Text(src)
+{
+ Object2D.call(this);
+}
+Text.prototype = Object.create(Object2D.prototype);
+Text.prototype.draw = function(context)
+ //TODO
+};