added fft library and began controls preferences.

This commit is contained in:
Harrison Deng 2018-10-16 15:44:43 -05:00
parent bca4ad5791
commit 6a28aeb852
3 changed files with 8 additions and 0 deletions

View File

@ -70,6 +70,9 @@
<Reference Include="BulletSharp, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\BulletSharp.0.11.1\lib\net40-client\BulletSharp.dll</HintPath>
</Reference>
<Reference Include="DSP, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\DSP.1.0.0\lib\DSP.dll</HintPath>
</Reference>
<Reference Include="MonoGame.Framework">
<HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\MonoGame.Framework.dll</HintPath>
</Reference>

View File

@ -8,5 +8,9 @@ namespace RhythmBullet.Zer01HD.Game.Preferences
{
class Controls
{
public int Forward;
public int Backward;
public int Left;
public int Right;
}
}

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="BulletSharp" version="0.11.1" targetFramework="net45" />
<package id="DSP" version="1.0.0" targetFramework="net45" />
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net45" />
</packages>