Setting up abstracts pt1 (Also added libraries)
parent
9d12b6e8ca
commit
875e8086e4
11
.classpath
11
.classpath
|
@ -7,17 +7,16 @@
|
|||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="lib" path="lib/bwyap-engine.jar" sourcepath="C:/Coding/Java/libraries/Bwyap's RenderEngine/src.zip"/>
|
||||
<classpathentry kind="lib" path="lib/json-simple-1.1.1.jar"/>
|
||||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
</classpath>
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -45,5 +45,6 @@
|
|||
<dependency><groupId>org.lwjgl</groupId><artifactId>lwjgl-openal</artifactId><classifier>${lwjgl.natives}</classifier></dependency>
|
||||
<dependency><groupId>org.lwjgl</groupId><artifactId>lwjgl-opengl</artifactId><classifier>${lwjgl.natives}</classifier></dependency>
|
||||
<dependency><groupId>org.joml</groupId><artifactId>joml</artifactId><version>${joml.version}</version></dependency>
|
||||
<dependency><groupId>org.spongepowered</groupId><artifactId>noise</artifactId><version>2.0.0-SNAPSHOT</version></dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1,18 @@
|
|||
package com.github.halotroop.litecraft.registries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.github.halotroop.litecraft.types.block.Block;
|
||||
|
||||
public class BlockList
|
||||
{
|
||||
public static List<Block> blocks;
|
||||
|
||||
public static Block dirt;
|
||||
public static Block stone;
|
||||
|
||||
public BlockList()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package com.github.halotroop.litecraft.registries;
|
||||
|
||||
public class EntityList
|
||||
{
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
package com.github.halotroop.litecraft.registries;
|
||||
|
||||
public class ItemList
|
||||
{
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package com.github.halotroop.litecraft.types.block;
|
||||
|
||||
public class Block
|
||||
{
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package com.github.halotroop.litecraft.types.gui;
|
||||
|
||||
import com.bwyap.engine.gui.GUI;
|
||||
|
||||
public abstract class HUD extends GUI
|
||||
{
|
||||
public HUD(float width, float height)
|
||||
{
|
||||
super(width, height);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package com.github.halotroop.litecraft.types.gui;
|
||||
|
||||
import com.bwyap.engine.gui.GUI;
|
||||
|
||||
public class MainMenu extends Menu
|
||||
{
|
||||
public MainMenu(float width, float height)
|
||||
{
|
||||
super(width, height);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package com.github.halotroop.litecraft.types.gui;
|
||||
|
||||
import com.bwyap.engine.gui.GUI;
|
||||
|
||||
public abstract class Menu extends GUI
|
||||
{
|
||||
public Menu(float width, float height)
|
||||
{
|
||||
super(width, height);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package com.github.halotroop.litecraft.types.item;
|
||||
|
||||
public class Item
|
||||
{
|
||||
}
|
Loading…
Reference in New Issue