Move EnumExtensions to Frontend

This commit is contained in:
Matt Nadareski
2024-05-28 12:00:05 -04:00
parent f2ba433859
commit e33588451d
3 changed files with 4 additions and 1 deletions

View File

@@ -144,6 +144,7 @@
- Create FrontendTool and move some methods to it
- Clear out InfoTool and remove
- Merge VersionTool into FrontendTool
- Move EnumExtensions to Frontend
### 3.1.9a (2024-05-21)

View File

@@ -5,9 +5,10 @@ using System.Collections.Generic;
using System.Collections.Concurrent;
#endif
using System.Reflection;
using MPF.Core;
using SabreTools.RedumpLib.Data;
namespace MPF.Core
namespace MPF.Frontend
{
public static class EnumExtensions
{

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using MPF.Core;
using MPF.Frontend;
using Xunit;
namespace MPF.Test.Core.Converters