10 lines
183 B
C#
10 lines
183 B
C#
using Pets.Interfaces;
|
|
using UnityEngine;
|
|
|
|
namespace Pets.Components.Properties
|
|
{
|
|
public struct CSleepingPositionOffset : IPetProperty
|
|
{
|
|
public Vector2 Offset;
|
|
}
|
|
} |