namespace refactor for R:Athenaeum

This commit is contained in:
2018-12-03 23:05:54 -06:00
parent dd5207b2b3
commit d92f036a5d
14 changed files with 47 additions and 47 deletions

View File

@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Audio
namespace RecrownedAthenaeum.Audio
{
internal class MusicController : IDisposable
{

View File

@@ -8,7 +8,7 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace RhythmBullet.Audio
namespace RecrownedAthenaeum.Audio
{
internal delegate void SearchListener(MusicList musicList);

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Audio
namespace RecrownedAthenaeum.Audio
{
public enum SupportedFormats
{

View File

@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Audio
namespace RecrownedAthenaeum.Audio
{
public class TransparentSampleProvider : ISampleProvider
{

View File

@@ -1,13 +1,13 @@
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using RhythmBullet.UI.Modular;
using RecrownedAthenaeum.UI.Modular;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Audio.Visualizer
namespace RecrownedAthenaeum.Audio.Visualizer
{
internal class HorizontalVisualizer : UIModule, IDisposable
{