Getting Started
Welcome, in this hopefully short introduction we'll try and get you started using Kendandrive. Before we get going here are some assumptions:
- You have experience using Java
- You know how to use a build tool, we use Maven and Gradle in this guide
- You understand basic development concepts
- You have an IDE and a blank Java project setup and ready to go
Setup
First, lets add the dependencies required to use Kendandrive.
Maven
<dependency>
<groupId>com.kendanware</groupId>
<artifactId>kendandrive-engine</artifactId>
<version>{{ kendandriveVersion }}</version>
</dependency>
Gradle
implementation group: 'com.kendanware', name: 'kendandrive-engine', version: '{{ kendandriveVersion }}'
Code
import com.kendanware.kendandrive.core.spi.Application;
public class HelloWorld extends Application {
@Override
public void setUp() {
}
@Override
public void initialize() {
}
@Override
public void update(final float deltaTime) {
}
@Override
public void fixedUpdate() {
}
}