I am new to modding and have just started a small project. However when I created my mod_ExampleClass class and tried to make the superclass BaseMod, Eclipse couldn't find the BaseMod class, saying it didn't exist. I am pretty sure that BaseMod should already be in the source. It is embarrassing to have an error so early in the code. What should I do? Any help is appreciated.
Thanks.
I am guessing I didn't do/know something important.
This is what I have typed so far:
package net.minecraft.src;
public class mod_SwiftSand extends BaseMod {
}
There is an error on BaseMod that says 'BaseMod cannot be resolved to a type'
Thank you for responding. I had installed ModLoader but it didn't work for some reason.... After the third retry I finally got it working, even though I did the same thing each time.
Rollback Post to RevisionRollBack
caput_miner
To post a comment, please login or register a new account.
I am new to modding and have just started a small project. However when I created my mod_ExampleClass class and tried to make the superclass BaseMod, Eclipse couldn't find the BaseMod class, saying it didn't exist. I am pretty sure that BaseMod should already be in the source. It is embarrassing to have an error so early in the code. What should I do? Any help is appreciated.
Thanks.
I am guessing I didn't do/know something important.
This is what I have typed so far:
package net.minecraft.src; public class mod_SwiftSand extends BaseMod { }There is an error on BaseMod that says 'BaseMod cannot be resolved to a type'