12 lines
106 B
C#
12 lines
106 B
C#
using System;
|
|
|
|
namespace AmplifyBloom
|
|
{
|
|
public enum ApertureShape
|
|
{
|
|
Square,
|
|
Hexagon,
|
|
Octagon
|
|
}
|
|
}
|