Files
Pets-Public/Components/CPetStuckChecker.cs
Lachlan Leone 2d6abcd684 v0.1.2
2024-01-22 06:12:41 +11:00

11 lines
199 B
C#

using KitchenMods;
using UnityEngine;
namespace Pets.Components
{
public struct CPetStuckChecker : IModComponent
{
public long LastCheck;
public Vector3 LastPosition;
}
}