11 lines
No EOL
178 B
C#
11 lines
No EOL
178 B
C#
using Unity.Entities;
|
|
using UnityEngine;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
public struct ActorDeathData : IComponentData
|
|
{
|
|
public Vector2 Direction;
|
|
public float Force;
|
|
}
|
|
} |