Files
TheGreatEggscape-Public/Components/CServeThreeCoursesTracker.cs
Lachlan Leone c3a5153a56 Initial Commit
2026-04-05 18:57:16 +10:00

12 lines
279 B
C#

using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CServeThreeCoursesTracker : IComponentData, IModComponent
{
public bool HasHadEggStarter;
public bool HasHadEggMain;
public bool HasHadEggDessert;
}
}