Files
Pets-Public/Components/CPetStuckChecker.cs
T

11 lines
199 B
C#
Raw Normal View History

2024-01-22 06:12:41 +11:00
using KitchenMods;
using UnityEngine;
namespace Pets.Components
{
public struct CPetStuckChecker : IModComponent
{
public long LastCheck;
public Vector3 LastPosition;
}
}