mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
390 B
C#
18 lines
390 B
C#
using AssetRipper.SourceGenerated.Subclasses.InheritVelocityModule;
|
|
|
|
namespace AssetRipper.SourceGenerated.Extensions
|
|
{
|
|
public static class InheritVelocityModuleExtensions
|
|
{
|
|
public enum InheritVelocityMode
|
|
{
|
|
Initial = 0,
|
|
Current = 1,
|
|
}
|
|
public static InheritVelocityMode GetMode(this IInheritVelocityModule module)
|
|
{
|
|
return (InheritVelocityMode)module.Mode;
|
|
}
|
|
}
|
|
}
|