Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:3: error: package org.apache.logging.log4j does not exist
- import org.apache.logging.log4j.Level;
- ^
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:7: error: package net.minecraftforge.fml.common.event does not exist
- import net.minecraftforge.fml.common.event.FMLInitializationEvent;
- ^
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:8: error: package net.minecraftforge.fml.common.event does not exist
- import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
- ^
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:9: error: package net.minecraftforge.fml.common.event does not exist
- import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
- ^
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:13: error: cannot find symbol
- public void preInit(FMLPreInitializationEvent e){
- ^
- symbol: class FMLPreInitializationEvent
- location: class ClientProxy
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:25: error: cannot find symbol
- public void init(FMLInitializationEvent e){
- ^
- symbol: class FMLInitializationEvent
- location: class ClientProxy
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:29: error: cannot find symbol
- public void postInit(FMLPostInitializationEvent e){
- ^
- symbol: class FMLPostInitializationEvent
- location: class ClientProxy
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:15: error: cannot find symbol
- Main.LOGGER.log(Level.INFO, "Loading native libraries...");
- ^
- symbol: variable Level
- location: class ClientProxy
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:15: error: cannot access Logger
- Main.LOGGER.log(Level.INFO, "Loading native libraries...");
- ^
- class file for org.apache.logging.log4j.Logger not found
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:17: error: cannot find symbol
- Main.LOGGER.log(Level.INFO, "Loaded native libraries!");
- ^
- symbol: variable Level
- location: class ClientProxy
- C:\Users\redacted\Desktop\modding\eclipse\HelloWorld\src\main\java\com\gamebuster19901\hello\proxy\ClientProxy.java:20: error: cannot find symbol
- Main.LOGGER.log(Level.ERROR, helloWorld());
- ^
- symbol: variable Level
- location: class ClientProxy
- 11 errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement