refactor: break classes and enums into separate files

This commit is contained in:
Anna Clemens 2021-04-06 18:44:26 -04:00
parent eaf6dec8e4
commit 65869a9575
No known key found for this signature in database
GPG key ID: 0B391D8F06FCD9E0
6 changed files with 85 additions and 73 deletions

View file

@ -0,0 +1,9 @@
namespace Dalamud.Game.Internal.Gui.Toast
{
public enum QuestToastPosition
{
Centre = 0,
Right = 1,
Left = 2,
}
}