/src/aerys/minko/type/parser/collada/resource/image/data/AbstractImageData.as
https://bitbucket.org/HopeSky/mars_nd2d · ActionScript · 30 lines · 25 code · 5 blank · 0 comment · 0 complexity · d6f54e4565f50cc453fcf86a5b825348 MD5 · raw file
- package aerys.minko.type.parser.collada.resource.image.data
- {
- import aerys.minko.render.resource.texture.TextureResource;
- public class AbstractImageData
- {
- protected var _path : String;
- protected var _textureResource : TextureResource
-
- public function get path() : String
- {
- return _path;
- }
-
- public function get textureResource() : TextureResource
- {
- return _textureResource;
- }
-
- public function set textureResource(v : TextureResource) : void
- {
- _textureResource = v;
- }
-
- public function AbstractImageData(path : String)
- {
- _path = path;
- }
- }
- }