switched generic type to object for preferences, no longer using marker interface.

This commit is contained in:
Harrison Deng 2018-12-05 00:02:12 -06:00
parent e0959b2578
commit 0f3cf08e75
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ using RecrownedAthenaeum.Persistence;
namespace RecrownedAthenaeum.Preferences
{
public class Controls : Persistence.Preferences
public class Controls
{
public Keys Forward = Keys.Up;
public Keys Backward = Keys.Down;

View File

@ -5,7 +5,7 @@ using RecrownedAthenaeum.Persistence;
namespace RecrownedAthenaeum.Preferences
{
public class General : Persistence.Preferences
public class General
{
public Resolution Resolution = new Resolution(1920, 1080);
public bool Fullscreen = false;