13 lines
147 B
C#
13 lines
147 B
C#
using System;
|
|
|
|
namespace ShowGridNumber
|
|
{
|
|
public enum OutLineSide
|
|
{
|
|
eUp,
|
|
eLeft,
|
|
eRight,
|
|
eBottom
|
|
}
|
|
}
|