Package transientlibs.maps.tiles

Source Code of transientlibs.maps.tiles.TileEffect

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package transientlibs.maps.tiles;

import transientlibs.objects.primitives.Int;
import transientlibs.bindedobjects.gamecontent.Effects;

/**
*
* @author kibertoad
*/
public class TileEffect {

    public Effects effect;

    public Int unitsLeft; //when 0, remove


    public TileEffect (int setType) {
        effect = Effects.effects.get(setType);
        //unitsLeft.value = 10;
        unitsLeft = new Int (10);
    }

}
TOP

Related Classes of transientlibs.maps.tiles.TileEffect

TOP
Copyright © 2018 www.massapi.com. 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.