12 lines
130 B
C#
12 lines
130 B
C#
|
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
namespace NeoFPS
|
|||
|
{
|
|||
|
public enum GroundContact
|
|||
|
{
|
|||
|
None,
|
|||
|
Static,
|
|||
|
Physics
|
|||
|
}
|
|||
|
}
|