Move Keys

This commit is contained in:
Alex Barney 2021-12-18 19:24:05 -07:00
parent 2d86d63fc6
commit e3d55f6793
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
namespace LibHac; namespace LibHac.Common.Keys;
public enum KeyType public enum KeyType
{ {
@ -6,4 +6,4 @@ public enum KeyType
Common, Common,
Unique, Unique,
Title Title
} }

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac; namespace LibHac.Common.Keys;
/// <summary> /// <summary>
/// This is the exception that is thrown when an action requires a key that is not found in the provided keyset. /// This is the exception that is thrown when an action requires a key that is not found in the provided keyset.
@ -77,4 +77,4 @@ public class MissingKeyException : LibHacException
return s; return s;
} }
} }
} }