11 lines
209 B
C#
11 lines
209 B
C#
namespace Cryville.Crtr {
|
|
public struct Clip {
|
|
public float Behind { get; set; }
|
|
public float Ahead { get; set; }
|
|
public Clip(float behind, float ahead) {
|
|
Behind = behind;
|
|
Ahead = ahead;
|
|
}
|
|
}
|
|
}
|