Package transientlibs.objects.general

Examples of transientlibs.objects.general.ImageSlot


    public HashMap<String, IImage> images = new HashMap<String, IImage>();
    //public HashMap<String, Animation> animations = new HashMap<String, Animation>();

    public ViewInfo() {
        for (int i = 0; i < 10; i++) {
            staticImages.add(new ImageSlot());
            cutImages.add(new ImageSections());
        }
    }
View Full Code Here


        while (this.size() <= onY) {
            add(new ArrayList<ImageSlot>());
        }

        while (this.get(onY).size() <= onX) {
            this.get(onY).add(new ImageSlot());
        }
       
        this.get(onY).get(onX).referencedImages = toImage;
    }
View Full Code Here

TOP

Related Classes of transientlibs.objects.general.ImageSlot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.