11 lines
No EOL
191 B
C#
11 lines
No EOL
191 B
C#
using Unity.Entities;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
public struct PlayerData : IComponentData
|
|
{
|
|
public float AirControlAmount;
|
|
public float RegenTimer;
|
|
public int PickupIndex;
|
|
}
|
|
} |