mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-27 03:43:28 +00:00
10 lines
126 B
C#
10 lines
126 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum BokehDestination
|
|
{
|
|
Background = 1,
|
|
Foreground = 2,
|
|
BackgroundAndForeground = 3
|
|
}
|