mirror of
https://github.com/Cpt-Adok/SNAKE.git
synced 2026-01-25 06:34:06 +00:00
Ajout des fichiers de configuration minimal
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal 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
23
README.md
Normal 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
16
pom.xml
Normal 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
5
src/Main.java
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
public class Main {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("hello world!");
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user