1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-06-25 08:04:43 -04:00

Music Score and JSON files WIP

- WIP music score inspired by The Sims 2's CAS. This is what Tony's Dress Up was inspired by back when it was still a Flash project.
- WIP JSON support for parsing clothings and rendering clothing as buttons
- Extended gitignore to support all of .NET Core and Monodevelop, due to Godot's upcoming support of the latter and future-proofing the former with .NET 5 inbound.
This commit is contained in:
Anthony Wilcox 2019-12-22 09:03:29 -05:00
parent 7fb6faa9bb
commit 0e3bb682bb
8 changed files with 877 additions and 11 deletions

38
.gitignore vendored
View file

@ -3,8 +3,8 @@
*.wav
*.ogg
# Created by https://www.gitignore.io/api/linux,godot,macos,backup,windows,visualstudiocode
# Edit at https://www.gitignore.io/?templates=linux,godot,macos,backup,windows,visualstudiocode
# Created by https://www.gitignore.io/api/linux,godot,macos,backup,windows,dotnetcore,executable,monodevelop,visualstudiocode
# Edit at https://www.gitignore.io/?templates=linux,godot,macos,backup,windows,dotnetcore,executable,monodevelop,visualstudiocode
### Backup ###
*.bak
@ -13,6 +13,28 @@
*.orig
*.tmp
### DotnetCore ###
# .NET Core build folders
/bin
/obj
# Common node modules locations
/node_modules
/wwwroot/node_modules
### Executable ###
*.app
*.bat
*.cgi
*.com
*.exe
*.gadget
*.jar
*.pif
*.vb
*.wsf
### Godot ###
# Godot-specific ignores
@ -66,6 +88,16 @@ Network Trash Folder
Temporary Items
.apdisk
### MonoDevelop ###
#User Specific
*.userprefs
*.usertasks
#Mono Project Files
*.pidb
*.resources
test-results/
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
@ -103,4 +135,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk
# End of https://www.gitignore.io/api/linux,godot,macos,backup,windows,visualstudiocode
# End of https://www.gitignore.io/api/linux,godot,macos,backup,windows,dotnetcore,executable,monodevelop,visualstudiocode