From 39ce8d8ab334b0159e9bb80a7b6bcc3db36171be Mon Sep 17 00:00:00 2001 From: Leo Rangheard <leo.rangheard@etu.univ-amu.fr> Date: Wed, 23 Sep 2020 14:48:09 +0200 Subject: [PATCH] Constructeur Crossword --- tp2/.idea/.gitignore | 3 +++ tp2/.idea/misc.xml | 6 ++++++ tp2/.idea/modules.xml | 8 ++++++++ tp2/.idea/vcs.xml | 6 ++++++ tp2/tp2.iml | 11 +++++++++++ 5 files changed, 34 insertions(+) create mode 100644 tp2/.idea/.gitignore create mode 100644 tp2/.idea/misc.xml create mode 100644 tp2/.idea/modules.xml create mode 100644 tp2/.idea/vcs.xml create mode 100644 tp2/tp2.iml diff --git a/tp2/.idea/.gitignore b/tp2/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/tp2/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/tp2/.idea/misc.xml b/tp2/.idea/misc.xml new file mode 100644 index 0000000..3a37236 --- /dev/null +++ b/tp2/.idea/misc.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectRootManager" version="2" languageLevel="JDK_14" project-jdk-name="14" project-jdk-type="JavaSDK"> + <output url="file://$PROJECT_DIR$/out" /> + </component> +</project> \ No newline at end of file diff --git a/tp2/.idea/modules.xml b/tp2/.idea/modules.xml new file mode 100644 index 0000000..46a7f23 --- /dev/null +++ b/tp2/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/tp2.iml" filepath="$PROJECT_DIR$/tp2.iml" /> + </modules> + </component> +</project> \ No newline at end of file diff --git a/tp2/.idea/vcs.xml b/tp2/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/tp2/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> + </component> +</project> \ No newline at end of file diff --git a/tp2/tp2.iml b/tp2/tp2.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/tp2/tp2.iml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="JAVA_MODULE" version="4"> + <component name="NewModuleRootManager" inherit-compiler-output="true"> + <exclude-output /> + <content url="file://$MODULE_DIR$"> + <sourceFolder url="file://$MODULE_DIR$" isTestSource="false" /> + </content> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> +</module> \ No newline at end of file -- GitLab