De-namespaced a class, to make it less verbose.

This commit is contained in:
Alex Szpakowski
2015-01-24 04:09:56 -04:00
parent e662fbdf80
commit cf60cf89fc
17 changed files with 88 additions and 115 deletions
+2 -2
View File
@@ -158,11 +158,11 @@ private:
// The ImageData from which the texture is created. May be null if
// Compressed image data was used to create the texture.
Object::StrongRef<love::image::ImageData> data;
StrongRef<love::image::ImageData> data;
// Or the Compressed Image Data from which the texture is created. May be
// null if raw ImageData was used to create the texture.
Object::StrongRef<love::image::CompressedData> cdata;
StrongRef<love::image::CompressedData> cdata;
// Real dimensions of the texture, if it was auto-padded to POT size.
int paddedWidth, paddedHeight;