12 lines
195 B
C#
12 lines
195 B
C#
|
|
namespace Rive
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Represents the result of a hit test.
|
||
|
|
/// </summary>
|
||
|
|
public enum HitResult
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
Hit = 1,
|
||
|
|
HitOpaque = 2
|
||
|
|
}
|
||
|
|
}
|