import java.util.*; import java.awt.*; // // Different stone // // Throwing in hole is different than other stones .. therefore not a generic solution // public class object230 extends object2{ public object230(){ objnumber=230; } public void init(Global glbl){ global=glbl; if(image == null){ image=global.loadImage(global.Server, global.Directory+"230"+global.Extention, global.show); img_4_2=global.loadImage(global.Server, global.Directory+"4_230"+global.Extention, global.show); sound=global.loadSound(global.Server, global.Directory+"2.au"); splash=global.loadSound(global.Server, global.Directory+"3.au"); throwing=global.loadSound(global.Server, global.Directory+"4.au"); } general=new General(global,230); } }