12 lines
No EOL
209 B
C#
12 lines
No EOL
209 B
C#
using System;
|
|
using Unity.Entities;
|
|
using UnityEngine;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
[GenerateAuthoringComponent]
|
|
public struct ActorBoundsData : IComponentData
|
|
{
|
|
[NonSerialized] public Rect Rect;
|
|
}
|
|
} |