switching to monogame begins here and now
429
.gitignore
vendored
@ -1,121 +1,346 @@
|
|||||||
## Java
|
# Created by https://www.gitignore.io/api/monodevelop
|
||||||
|
|
||||||
*.class
|
### MonoDevelop ###
|
||||||
*.war
|
#User Specific
|
||||||
*.ear
|
*.userprefs
|
||||||
hs_err_pid*
|
*.usertasks
|
||||||
|
|
||||||
## Robovm
|
#Mono Project Files
|
||||||
/ios/robovm-build/
|
*.pidb
|
||||||
|
*.resources
|
||||||
|
test-results/
|
||||||
|
|
||||||
## GWT
|
# End of https://www.gitignore.io/api/monodevelop
|
||||||
/html/war/
|
|
||||||
/html/gwt-unitCache/
|
|
||||||
.apt_generated/
|
|
||||||
.gwt/
|
|
||||||
gwt-unitCache/
|
|
||||||
www-test/
|
|
||||||
.gwt-tmp/
|
|
||||||
|
|
||||||
## Android Studio and Intellij and Android in general
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
/android/libs/armeabi/
|
## files generated by popular Visual Studio add-ons.
|
||||||
/android/libs/armeabi-v7a/
|
##
|
||||||
/android/libs/arm64-v8a/
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
/android/libs/x86/
|
|
||||||
/android/libs/x86_64/
|
|
||||||
/android/gen/
|
|
||||||
.idea/
|
|
||||||
*.ipr
|
|
||||||
*.iws
|
|
||||||
*.iml
|
|
||||||
/android/out/
|
|
||||||
com_crashlytics_export_strings.xml
|
|
||||||
|
|
||||||
## Eclipse
|
# User-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
.classpath
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
.project
|
*.userprefs
|
||||||
.metadata/
|
|
||||||
/android/bin/
|
# Build results
|
||||||
/core/bin/
|
[Dd]ebug/
|
||||||
/desktop/bin/
|
[Dd]ebugPublic/
|
||||||
/html/bin/
|
[Rr]elease/
|
||||||
/ios/bin/
|
[Rr]eleases/
|
||||||
/ios-moe/bin/
|
x64/
|
||||||
|
x86/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Ll]og/
|
||||||
|
|
||||||
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
|
.vs/
|
||||||
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
|
#wwwroot/
|
||||||
|
|
||||||
|
# Visual Studio 2017 auto generated files
|
||||||
|
Generated\ Files/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUNIT
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# Benchmark Results
|
||||||
|
BenchmarkDotNet.Artifacts/
|
||||||
|
|
||||||
|
# .NET Core
|
||||||
|
project.lock.json
|
||||||
|
project.fragment.lock.json
|
||||||
|
artifacts/
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
StyleCopReport.xml
|
||||||
|
|
||||||
|
# Files built by Visual Studio
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*_h.h
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.iobj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.ipdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
*.tmp
|
*.tmp
|
||||||
*.bak
|
*.tmp_proj
|
||||||
*.swp
|
*.log
|
||||||
*~.nib
|
*.vspscc
|
||||||
.settings/
|
*.vssscc
|
||||||
.loadpath
|
.builds
|
||||||
.externalToolBuilders/
|
*.pidb
|
||||||
*.launch
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
## NetBeans
|
# Chutzpah Test files
|
||||||
|
_Chutzpah*
|
||||||
|
|
||||||
/nbproject/private/
|
# Visual C++ cache files
|
||||||
/android/nbproject/private/
|
ipch/
|
||||||
/core/nbproject/private/
|
*.aps
|
||||||
/desktop/nbproject/private/
|
*.ncb
|
||||||
/html/nbproject/private/
|
*.opendb
|
||||||
/ios/nbproject/private/
|
*.opensdf
|
||||||
/ios-moe/nbproject/private/
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
/build/
|
# Visual Studio profiler
|
||||||
/android/build/
|
*.psess
|
||||||
/core/build/
|
*.vsp
|
||||||
/desktop/build/
|
*.vspx
|
||||||
/html/build/
|
*.sap
|
||||||
/ios/build/
|
|
||||||
/ios-moe/build/
|
|
||||||
|
|
||||||
/nbbuild/
|
# Visual Studio Trace Files
|
||||||
/android/nbbuild/
|
*.e2e
|
||||||
/core/nbbuild/
|
|
||||||
/desktop/nbbuild/
|
|
||||||
/html/nbbuild/
|
|
||||||
/ios/nbbuild/
|
|
||||||
/ios-moe/nbbuild/
|
|
||||||
|
|
||||||
/dist/
|
# TFS 2012 Local Workspace
|
||||||
/android/dist/
|
$tf/
|
||||||
/core/dist/
|
|
||||||
/desktop/dist/
|
|
||||||
/html/dist/
|
|
||||||
/ios/dist/
|
|
||||||
/ios-moe/dist/
|
|
||||||
|
|
||||||
/nbdist/
|
# Guidance Automation Toolkit
|
||||||
/android/nbdist/
|
*.gpState
|
||||||
/core/nbdist/
|
|
||||||
/desktop/nbdist/
|
|
||||||
/html/nbdist/
|
|
||||||
/ios/nbdist/
|
|
||||||
/ios-moe/nbdist/
|
|
||||||
|
|
||||||
nbactions.xml
|
# ReSharper is a .NET coding add-in
|
||||||
nb-configuration.xml
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
## Gradle
|
# JustCode is a .NET coding add-in
|
||||||
|
.JustCode
|
||||||
|
|
||||||
/local.properties
|
# TeamCity is a build add-in
|
||||||
.gradle/
|
_TeamCity*
|
||||||
gradle-app.setting
|
|
||||||
/build/
|
|
||||||
/android/build/
|
|
||||||
/core/build/
|
|
||||||
/desktop/build/
|
|
||||||
/html/build/
|
|
||||||
/ios/build/
|
|
||||||
/ios-moe/build/
|
|
||||||
|
|
||||||
## OS Specific
|
# DotCover is a Code Coverage Tool
|
||||||
.DS_Store
|
*.dotCover
|
||||||
._*
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
## Gource
|
# AxoCover is a Code Coverage Tool
|
||||||
gource/
|
.axoCover/*
|
||||||
|
!.axoCover/settings.json
|
||||||
|
|
||||||
## Notes
|
# Visual Studio code coverage results
|
||||||
Notes/
|
*.coverage
|
||||||
|
*.coveragexml
|
||||||
|
|
||||||
|
# NCrunch
|
||||||
|
_NCrunch_*
|
||||||
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
|
# MightyMoose
|
||||||
|
*.mm.*
|
||||||
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||||
|
# but database connection strings (with potential passwords) will be unencrypted
|
||||||
|
*.pubxml
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||||
|
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||||
|
# in these scripts will be unencrypted
|
||||||
|
PublishScripts/
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/[Pp]ackages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/[Pp]ackages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/[Pp]ackages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignorable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
|
# Microsoft Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Microsoft Azure Emulator
|
||||||
|
ecf/
|
||||||
|
rcf/
|
||||||
|
|
||||||
|
# Windows Store app package directories and files
|
||||||
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
Package.StoreAssociation.xml
|
||||||
|
_pkginfo.txt
|
||||||
|
*.appx
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.jfm
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Including strong name files can present a security risk
|
||||||
|
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||||
|
#*.snk
|
||||||
|
|
||||||
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
|
#bower_components/
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
ServiceFabricBackup/
|
||||||
|
*.rptproj.bak
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
*.ndf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
*.rptproj.rsuser
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||||
|
*.vbw
|
||||||
|
|
||||||
|
# Visual Studio LightSwitch build output
|
||||||
|
**/*.HTMLClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/ModelManifest.xml
|
||||||
|
**/*.Server/GeneratedArtifacts
|
||||||
|
**/*.Server/ModelManifest.xml
|
||||||
|
_Pvt_Extensions
|
||||||
|
|
||||||
|
# Paket dependency manager
|
||||||
|
.paket/paket.exe
|
||||||
|
paket-files/
|
||||||
|
|
||||||
|
# FAKE - F# Make
|
||||||
|
.fake/
|
||||||
|
|
||||||
|
# JetBrains Rider
|
||||||
|
.idea/
|
||||||
|
*.sln.iml
|
||||||
|
|
||||||
|
# CodeRush
|
||||||
|
.cr/
|
||||||
|
|
||||||
|
# Python Tools for Visual Studio (PTVS)
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Cake - Uncomment if you are using it
|
||||||
|
# tools/**
|
||||||
|
# !tools/packages.config
|
||||||
|
|
||||||
|
# Tabs Studio
|
||||||
|
*.tss
|
||||||
|
|
||||||
|
# Telerik's JustMock configuration file
|
||||||
|
*.jmconfig
|
||||||
|
|
||||||
|
# BizTalk build output
|
||||||
|
*.btp.cs
|
||||||
|
*.btm.cs
|
||||||
|
*.odx.cs
|
||||||
|
*.xsd.cs
|
||||||
|
|
||||||
|
# OpenCover UI analysis results
|
||||||
|
OpenCover/
|
||||||
|
|
||||||
|
# Azure Stream Analytics local run output
|
||||||
|
ASALocalRun/
|
||||||
|
|
||||||
|
# MSBuild Binary and Structured Log
|
||||||
|
*.binlog
|
||||||
|
|
||||||
|
# NVidia Nsight GPU debugger configuration file
|
||||||
|
*.nvuser
|
||||||
|
|
||||||
|
# MFractors (Xamarin productivity tool) working folder
|
||||||
|
.mfractor/
|
||||||
|
|
||||||
|
# Local History for Visual Studio
|
||||||
|
.localhistory/
|
@ -1,24 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
package="zero1hd.rhythmbullet" >
|
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="27" />
|
|
||||||
|
|
||||||
<application
|
|
||||||
android:allowBackup="true"
|
|
||||||
android:icon="@drawable/ic_launcher"
|
|
||||||
android:label="@string/app_name"
|
|
||||||
android:theme="@style/GdxTheme" >
|
|
||||||
<activity
|
|
||||||
android:name="zero1hd.rhythmbullet.AndroidLauncher"
|
|
||||||
android:label="@string/app_name"
|
|
||||||
android:screenOrientation="landscape"
|
|
||||||
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MAIN" />
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
</application>
|
|
||||||
|
|
||||||
</manifest>
|
|
Before Width: | Height: | Size: 629 B |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 134 B |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 108 B |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 130 B |
Before Width: | Height: | Size: 503 B |
Before Width: | Height: | Size: 535 B |
Before Width: | Height: | Size: 96 B |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 783 B |
Before Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 566 B |
Before Width: | Height: | Size: 634 B |
Before Width: | Height: | Size: 100 B |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 735 B |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 137 B |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 112 B |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 130 B |
Before Width: | Height: | Size: 552 B |
Before Width: | Height: | Size: 609 B |
Before Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 3.5 MiB |
Before Width: | Height: | Size: 160 B |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 851 B |
Before Width: | Height: | Size: 114 B |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 3.8 MiB |
Before Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 159 B |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 122 B |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 123 KiB |
Before Width: | Height: | Size: 6.4 MiB |
Before Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 237 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 663 B |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 3.8 KiB |