Skip to content

cnsuhao/enginedx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

enginedx

Simple libGDX based Framework

Including the engine with Intellij / Android Studio

  • Clone the repo

git clone git@github.com:danmarcab/enginedx.git

  • Create your project with gdx-setup and open it

  • Import the module

    • File->Import Module
    • Select the directory where you cloned the repo
  • Add the dependencies in your build.gradle

project(":core") {
    ...
    dependencies {
        compile project(":enginedx")
        ...
    }
}
project(":enginedx") {
    apply plugin: "java"

    dependencies {
        compile "com.badlogicgames.gdx:gdx:$gdxVersion"
    }
}
  • Extend your game from GameDX class
import com.engine.dx.GameDX;

public class MyGame extends GameDX {
}

About

Simple libGDX based Framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%