Add existing to tracked
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = Texture;
|
||||
|
||||
/**
|
||||
* An object containing information about a texture.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
function Texture() {
|
||||
this.transparent = false;
|
||||
this.source = undefined;
|
||||
this.name = undefined;
|
||||
this.extension = undefined;
|
||||
this.path = undefined;
|
||||
this.pixels = undefined;
|
||||
this.width = undefined;
|
||||
this.height = undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user