10 lines
103 B
C#
10 lines
103 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum MegaCacheRepeatMode
|
|
{
|
|
Loop = 0,
|
|
Clamp = 1,
|
|
PingPong = 2
|
|
}
|