diff --git a/.gitignore b/.gitignore index 524f096..a0510aa 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,13 @@ *.tar.gz *.rar -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +# virtual machine crash logs hs_err_pid* replay_pid* + +#IntelliJ +# IntelliJ IDEA project files +.idea/ +*.iml +/out/ + diff --git a/Cards-Gate/.gitignore b/Cards-Gate/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/Cards-Gate/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/Cards-Gate/src/Main.java b/Cards-Gate/src/Main.java new file mode 100644 index 0000000..e69de29