Setting up abstracts pt1 (Also added libraries)

master
Caroline Bell 2019-09-18 12:50:34 -07:00
parent 9d12b6e8ca
commit 875e8086e4
10 changed files with 78 additions and 6 deletions

View File

@ -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&apos;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>

View File

@ -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>

View File

@ -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()
{
}
}

View File

@ -0,0 +1,5 @@
package com.github.halotroop.litecraft.registries;
public class EntityList
{
}

View File

@ -0,0 +1,6 @@
package com.github.halotroop.litecraft.registries;
public class ItemList
{
}

View File

@ -0,0 +1,5 @@
package com.github.halotroop.litecraft.types.block;
public class Block
{
}

View File

@ -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);
}
}

View File

@ -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);
}
}

View File

@ -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);
}
}

View File

@ -0,0 +1,5 @@
package com.github.halotroop.litecraft.types.item;
public class Item
{
}