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.ContentSystem;
|
||||||
using RecrownedAthenaeum.DataTypes;
|
using RecrownedAthenaeum.SpecialTypes;
|
||||||
|
|
||||||
namespace RecrownedAthenaeum.ContentResolvers
|
namespace RecrownedAthenaeum.ContentResolvers
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
using RecrownedAthenaeum.DataTypes;
|
using RecrownedAthenaeum.SpecialTypes;
|
||||||
|
|
||||||
namespace RecrownedAthenaeum.Preferences
|
namespace RecrownedAthenaeum.Preferences
|
||||||
{
|
{
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="RecrownedAthenaeum, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="RecrownedAthenaeum, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\RecrownedAthenaeum\RecrownedAthenaeum\bin\Release\RecrownedAthenaeum.dll</HintPath>
|
<HintPath>..\References\RecrownedAthenaeum\RecrownedAthenaeum.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
|
@ -7,12 +7,13 @@ using RecrownedAthenaeum.Preferences;
|
|||||||
using RecrownedAthenaeum.Screens.MainMenu;
|
using RecrownedAthenaeum.Screens.MainMenu;
|
||||||
using RecrownedAthenaeum.Camera;
|
using RecrownedAthenaeum.Camera;
|
||||||
using RecrownedAthenaeum.ContentSystem;
|
using RecrownedAthenaeum.ContentSystem;
|
||||||
using RecrownedAthenaeum.DataTypes;
|
using RecrownedAthenaeum.SpecialTypes;
|
||||||
using RecrownedAthenaeum.Input;
|
using RecrownedAthenaeum.Input;
|
||||||
using RecrownedAthenaeum.Persistence;
|
using RecrownedAthenaeum.Persistence;
|
||||||
using RecrownedAthenaeum.ScreenSystem;
|
using RecrownedAthenaeum.ScreenSystem;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
using RecrownedAthenaeum.UI.Skin;
|
||||||
|
|
||||||
namespace RecrownedAthenaeum
|
namespace RecrownedAthenaeum
|
||||||
{
|
{
|
||||||
@ -37,6 +38,7 @@ namespace RecrownedAthenaeum
|
|||||||
private MainScreen mainScreen;
|
private MainScreen mainScreen;
|
||||||
private Texture2D currentCursorTexture;
|
private Texture2D currentCursorTexture;
|
||||||
internal readonly MusicController musicController;
|
internal readonly MusicController musicController;
|
||||||
|
private Skin skin;
|
||||||
|
|
||||||
public RhythmBulletGame()
|
public RhythmBulletGame()
|
||||||
{
|
{
|
||||||
@ -169,6 +171,7 @@ namespace RecrownedAthenaeum
|
|||||||
assets.Queue<Texture2D>("title");
|
assets.Queue<Texture2D>("title");
|
||||||
assets.Queue<Texture2D>("default_cover", false);
|
assets.Queue<Texture2D>("default_cover", false);
|
||||||
assets.Queue<Texture2D>("backgrounds/mainBG");
|
assets.Queue<Texture2D>("backgrounds/mainBG");
|
||||||
|
assets.Queue<TextureAtlas>("UI");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetUpCursor()
|
private void SetUpCursor()
|
||||||
|
Loading…
Reference in New Issue
Block a user