Commit a6cfa7b5 authored by Mohan  Guo's avatar Mohan Guo
Browse files

Update project files

parent c1837519
Loading
Loading
Loading
Loading

.DS_Store

0 → 100644
+6 KiB

File added.

No diff preview for this file type.

.gitignore

0 → 100644
+13 −0
Original line number Diff line number Diff line
/.gradle/
/.nb-gradle/
/build/
/private/
/*.dll
/*.dylib
/*.so

#Although most of the .idea directory should not be committed there is a legitimate purpose for committing run configurations
/.idea/
!/.idea/runConfigurations/

local.properties

.vscode/JME_style.xml

0 → 100644
+310 −0

File added.

Preview size limit exceeded, changes collapsed.

.vscode/launch.json

0 → 100644
+18 −0
Original line number Diff line number Diff line
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "java",
            "name": "Launch Bouncingshape",
            "request": "launch",
            "mainClass": "bouncingshape.Bouncingshape",
            "osx": {
                "vmArgs": "-XstartOnFirstThread -ea"
            },
            "vmArgs": "-ea"
        }
    ]
}

.vscode/settings.json

0 → 100644
+7 −0
Original line number Diff line number Diff line
{
    "java.configuration.updateBuildConfiguration": "automatic",
    "java.refactor.renameFromFileExplorer": "prompt",
    "java.format.settings.url": "./.vscode/JME_style.xml",
    "editor.formatOnPaste": true,
    "editor.formatOnType": true
}
Loading