15 lines
268 B
C#
15 lines
268 B
C#
using KitchenMods;
|
|
using Pets.Enums;
|
|
|
|
namespace Pets.Components
|
|
{
|
|
public struct CDefaultState : IModComponent
|
|
{
|
|
public CDefaultState(PetState state)
|
|
{
|
|
State = state;
|
|
}
|
|
|
|
public readonly PetState State;
|
|
}
|
|
} |