/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

  1. package aerys.minko.type.parser.collada.resource.image.data
  2. {
  3. import aerys.minko.render.resource.texture.TextureResource;
  4. public class AbstractImageData
  5. {
  6. protected var _path : String;
  7. protected var _textureResource : TextureResource
  8. public function get path() : String
  9. {
  10. return _path;
  11. }
  12. public function get textureResource() : TextureResource
  13. {
  14. return _textureResource;
  15. }
  16. public function set textureResource(v : TextureResource) : void
  17. {
  18. _textureResource = v;
  19. }
  20. public function AbstractImageData(path : String)
  21. {
  22. _path = path;
  23. }
  24. }
  25. }