17 lines
242 B
C#
17 lines
242 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
public enum TransitionMode
|
|
{
|
|
Linear,
|
|
Smooth,
|
|
Smoother,
|
|
EaseIn,
|
|
EaseOut,
|
|
Exponential
|
|
}
|
|
}
|