1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2024-11-26 19:13:27 +00:00

Merge pull request #2 from Klagarge/Add-Screen

Add screen
This commit is contained in:
Rémi Heredero 2022-06-02 16:09:20 +02:00 committed by GitHub
commit 28c14ce9c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 17 deletions

5
.gitignore vendored
View File

@ -5,7 +5,4 @@
build build
# Ignore bin # Ignore bin
.\app\bin app/bin/
./app/bin
\app\bin
/app/bin

View File

@ -1,4 +1,5 @@
{ {
"java.configuration.updateBuildConfiguration": "interactive"
"cSpell.words": [ "cSpell.words": [
"pokemudry", "pokemudry",
"Spritesheet" "Spritesheet"

View File

@ -32,10 +32,11 @@ dependencies {
application { application {
// Define the main class for the application. // Define the main class for the application.
mainClass = 'pokemudry.App' mainClass = 'PokeMudry'
} }
/*
tasks.named('test') { tasks.named('test') {
// Use JUnit Platform for unit tests. // Use JUnit Platform for unit tests.
useJUnitPlatform() useJUnitPlatform()
} }
*/

View File

@ -1,11 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class AppTest {
}