You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
368 B

using Unity.Mathematics;
namespace ECSTest.Server
{
public struct CannonData
{
public float2 position;
public float2 velocity;
public float direction;
public int cooldownFrameId;
public int health;
public int deathFrameId;
}
public struct BulletData
{
public float2 position;
}
}