Guest User

Untitled

a guest
Apr 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package com.akqa.porpoise.displayManager {
  2. import flash.display.DisplayObject;
  3.  
  4. /**
  5. * @author timrobles
  6. */
  7. public interface IDisplayManifest {
  8.  
  9. function addItemAt( id : String, dispObj : DisplayObject, parentId : String = null ) : Boolean;
  10.  
  11. /**
  12. * <container>
  13. * <section />
  14. * <section />
  15. * </container>
  16. *
  17. * dm.addItemAt ( "container1", sprite );
  18. * dm.addItemAt( "section1", displayObject, "container1" );
  19. *
  20. */
  21. }
  22.  
  23. }
Add Comment
Please, Sign In to add comment