13 lines
217 B
C#
13 lines
217 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Pacman_refactored.Classes.UI.Label.Enums
|
|
{
|
|
public enum HoriZontalAlignment
|
|
{
|
|
Top,
|
|
Center,
|
|
Right
|
|
}
|
|
}
|