implemented the refactors in RA
This commit is contained in:
parent
6fb628ee08
commit
549d30396e
BIN
References/RecrownedAthenaeum/MonoGame.Framework.dll
Normal file
BIN
References/RecrownedAthenaeum/MonoGame.Framework.dll
Normal file
Binary file not shown.
18061
References/RecrownedAthenaeum/MonoGame.Framework.xml
Normal file
18061
References/RecrownedAthenaeum/MonoGame.Framework.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
References/RecrownedAthenaeum/Newtonsoft.Json.dll
Normal file
BIN
References/RecrownedAthenaeum/Newtonsoft.Json.dll
Normal file
Binary file not shown.
11121
References/RecrownedAthenaeum/Newtonsoft.Json.xml
Normal file
11121
References/RecrownedAthenaeum/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
References/RecrownedAthenaeum/RecrownedAthenaeum.dll
Normal file
BIN
References/RecrownedAthenaeum/RecrownedAthenaeum.dll
Normal file
Binary file not shown.
1600
References/RecrownedAthenaeum/RecrownedAthenaeum.xml
Normal file
1600
References/RecrownedAthenaeum/RecrownedAthenaeum.xml
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
using RecrownedAthenaeum.ContentSystem;
|
||||
using RecrownedAthenaeum.DataTypes;
|
||||
using RecrownedAthenaeum.SpecialTypes;
|
||||
|
||||
namespace RecrownedAthenaeum.ContentResolvers
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using RecrownedAthenaeum.DataTypes;
|
||||
using RecrownedAthenaeum.SpecialTypes;
|
||||
|
||||
namespace RecrownedAthenaeum.Preferences
|
||||
{
|
||||
|
@ -79,7 +79,7 @@
|
||||
</Reference>
|
||||
<Reference Include="RecrownedAthenaeum, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\RecrownedAthenaeum\RecrownedAthenaeum\bin\Release\RecrownedAthenaeum.dll</HintPath>
|
||||
<HintPath>..\References\RecrownedAthenaeum\RecrownedAthenaeum.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
|
@ -7,12 +7,13 @@ using RecrownedAthenaeum.Preferences;
|
||||
using RecrownedAthenaeum.Screens.MainMenu;
|
||||
using RecrownedAthenaeum.Camera;
|
||||
using RecrownedAthenaeum.ContentSystem;
|
||||
using RecrownedAthenaeum.DataTypes;
|
||||
using RecrownedAthenaeum.SpecialTypes;
|
||||
using RecrownedAthenaeum.Input;
|
||||
using RecrownedAthenaeum.Persistence;
|
||||
using RecrownedAthenaeum.ScreenSystem;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using RecrownedAthenaeum.UI.Skin;
|
||||
|
||||
namespace RecrownedAthenaeum
|
||||
{
|
||||
@ -37,6 +38,7 @@ namespace RecrownedAthenaeum
|
||||
private MainScreen mainScreen;
|
||||
private Texture2D currentCursorTexture;
|
||||
internal readonly MusicController musicController;
|
||||
private Skin skin;
|
||||
|
||||
public RhythmBulletGame()
|
||||
{
|
||||
@ -169,6 +171,7 @@ namespace RecrownedAthenaeum
|
||||
assets.Queue<Texture2D>("title");
|
||||
assets.Queue<Texture2D>("default_cover", false);
|
||||
assets.Queue<Texture2D>("backgrounds/mainBG");
|
||||
assets.Queue<TextureAtlas>("UI");
|
||||
}
|
||||
|
||||
private void SetUpCursor()
|
||||
|
Loading…
Reference in New Issue
Block a user