== ERRORS FOUND ==
src\minecraft\net\minecraft\src\Blockglowglass.jav a:6: invalid method declaratio
n; return type required
public Blockglowglass(int i, int j)
^
1 error
==================
Can Any one help??
Printable View
== ERRORS FOUND ==
src\minecraft\net\minecraft\src\Blockglowglass.jav a:6: invalid method declaratio
n; return type required
public Blockglowglass(int i, int j)
^
1 error
==================
Can Any one help??
Uhhhh... What are you trying to do? Where's your SSCCE?
Please see the link in my signature on asking questions the smart way.
Looks like you're trying to declare a constructor, but the compiler thinks it should be a method - there's probably some punctuation or syntax problem involved... If you post the relevant code, it should be easier to suggest something.
package net.minecraft.src;
import java.util.Random;
public class BlockGlowGlass extends Block
{
public Blockglowglass(int i, int j)
{
super(i, j, Material.glowstone);
Case matters. BlockGlowGlass != Blockglowglass.
Minecraft :P