12 lines
212 B
C#
12 lines
212 B
C#
using System;
|
|
|
|
namespace PolyPerfect
|
|
{
|
|
[Serializable]
|
|
public class MovementState : AIState
|
|
{
|
|
public float maxStateTime = 40f;
|
|
public float moveSpeed = 3f;
|
|
public float turnSpeed = 120f;
|
|
}
|
|
} |