11 lines
199 B
C#
11 lines
199 B
C#
|
|
using KitchenMods;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Pets.Components
|
||
|
|
{
|
||
|
|
public struct CPetStuckChecker : IModComponent
|
||
|
|
{
|
||
|
|
public long LastCheck;
|
||
|
|
public Vector3 LastPosition;
|
||
|
|
}
|
||
|
|
}
|