11 lines
No EOL
199 B
C#
11 lines
No EOL
199 B
C#
using Unity.Entities;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
public struct ProjectileSharedData : ISharedComponentData
|
|
{
|
|
public float MaxLife;
|
|
public float Damage;
|
|
public float RicochetChance;
|
|
}
|
|
} |