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
27 lines
542 B
C#
27 lines
542 B
C#
using Client.ConsoleForms.Parameters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.ConsoleForms.Graphics
|
|
{
|
|
public class ListView : View
|
|
{
|
|
|
|
|
|
public ListView(ViewData parameters) : base(parameters)
|
|
{
|
|
|
|
}
|
|
|
|
public override Region Occlusion => throw new NotImplementedException();
|
|
|
|
protected override void _Draw(int left, int top)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|