9 lines
No EOL
166 B
C#
9 lines
No EOL
166 B
C#
using Unity.Entities;
|
|
using Unity.Mathematics;
|
|
|
|
public struct ProjectileData : IComponentData
|
|
{
|
|
public float2 Velocity;
|
|
public float Life;
|
|
public int HitMask;
|
|
} |