11 lines
207 B
C#
11 lines
207 B
C#
using Unity.Entities;
|
|
using Unity.Mathematics;
|
|
|
|
namespace HappyForest.Prototypen
|
|
{
|
|
public struct PilleComponent : IComponentData
|
|
{
|
|
public float3 Velocity;
|
|
public float Speed;
|
|
}
|
|
}
|