Skip to content
Snippets Groups Projects
Commit 72365ebc authored by Eleanor McMurtry's avatar Eleanor McMurtry
Browse files

initial commit

parent 0de97587
Branches master
No related tags found
No related merge requests found
# emcmurtry-project-1
Project 1 for SWEN20003 (Semester 2, 2020).
\ No newline at end of file
pom.xml 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>au.edu.unimelb.cis</groupId>
<artifactId>bagel</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<build>
<sourceDirectory>src/</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.github.eleanor-em</groupId>
<artifactId>bagel</artifactId>
<version>1.9.3</version>
</dependency>
</dependencies>
</project>
Tree: https://opengameart.org/content/tree-9
Grass: https://opengameart.org/content/grass-tiles-0
\ No newline at end of file
res/images/background.png

14.4 KiB

res/images/gatherer.png

820 B

res/images/tree.png

2.06 KiB

Tree,256,192
Tree,256,512
Tree,704,192
Tree,704,512
Gatherer,512,384
Gatherer,384,512
\ No newline at end of file
public OtherClass {
}
import bagel.AbstractGame;
import bagel.Input;
public class ShadowLife extends AbstractGame {
@Override
protected void update(Input input) {
}
public static void main(String[] args) {
new ShadowLife().run();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment