Gave layout metadata its own sub-namespace Gave views their own sub-namespace Added view naming convention Moved layout data to a separate folder Moved layout contexts to a separate folder
18 lines
275 B
C#
18 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.ConsoleForms
|
|
{
|
|
[Flags]
|
|
public enum Gravity
|
|
{
|
|
LEFT = 1,
|
|
RIGHT = 2,
|
|
TOP = 4,
|
|
BOTTOM = 8
|
|
}
|
|
}
|