Ajout des fichiers de configuration minimal

This commit is contained in:
Loïc GUEZO
2024-04-24 14:56:59 +02:00
parent 9b5a7e4974
commit 8adfc77741
4 changed files with 49 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# les fichiers de configurations que macOS crée automatiquement.
.DS_Store
#le dossier binary pour séparer et pas importer les .class qui sont inutile a Github.
bin/

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
```
______ __ __ ______ __ __ ______
/\ ___\ /\ "-.\ \ /\ __ \ /\ \/ / /\ ___\
\ \___ \\ \ \-. \\ \ \_\ \\ \ _"-.\ \ __\
\/\_____\\ \_\\"\_\\ \_\ \_\\ \_\ \_\\ \_____\
\/_____/ \/_/ \/_/ \/_/\/_/ \/_/\/_/ \/_____/
```
# INTRODUCTION
C'est un projet de fin de Licence L1 en Informatique à UPEC, la création d'un petit projet en binôme sur la création d'un jeu **SNAKE** en multijoueur et en affrontement 1 contre 1. Nous allons séparer cette présentation en plusieurs parties :
- La partie **JEU et GAMEPLAY**
- La partie **RÉSEAUX et COMMUNICATION**
- La partie **INTELLIGENCE ARTIFICIELLE**
- La partie **GRAPHIQUE**
# CRÉDITS
Ce projet à été réalisé par FARIA Théo et GUEZO Loïc.

16
pom.xml Normal file
View File

@@ -0,0 +1,16 @@
<?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>com.snake</groupId>
<artifactId>Snake</artifactId>
<version>1.0</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
</project>

5
src/Main.java Normal file
View File

@@ -0,0 +1,5 @@
public class Main {
public static void main(String[] args) {
System.out.println("hello world!");
}
}