Initial Commit

This commit is contained in:
Lachlan Leone
2026-04-05 18:57:16 +10:00
commit c3a5153a56
691 changed files with 85219 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CBunny : IComponentData, IModComponent
{
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CCanHideItem : IComponentData, IModComponent, IApplianceProperty
{
public int HiddenItem;
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CCanTriggerOrangeOrbs : IComponentData, IModComponent, IItemProperty
{
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CCanTriggerOrbs : IComponentData, IModComponent, IItemProperty
{
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CCompletedAchievementEntity : IComponentData, IModComponent
{
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CEgg : IComponentData, IModComponent, IItemProperty
{
}
}
+13
View File
@@ -0,0 +1,13 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CEggBasket : IComponentData, IModComponent, IItemProperty
{
public struct CanPlaceInBasket : IComponentData, IModComponent, IItemProperty
{
}
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CEggBush : IComponentData, IModComponent, IApplianceProperty
{
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CEventBunny : IComponentData, IModComponent
{
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CHasOrangeOrbs : IComponentData, IModComponent
{
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CHasOrbs : IComponentData, IModComponent
{
}
}
+11
View File
@@ -0,0 +1,11 @@
using KitchenData;
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CHidableItem : IComponentData, IModComponent, IItemProperty
{
}
}
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using KitchenData;
using KitchenMods;
using Steamworks;
using Unity.Collections;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CHiddenBurnProcess : IComponentData, IModComponent, IItemProperty
{
public float BurnProgress;
public float BurnTimeInSeconds;
public FixedListInt64 Result;
public bool IsComplete;
public FixedListInt64 BurnableSurfaces;
}
}
+12
View File
@@ -0,0 +1,12 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CServeThreeCoursesTracker : IComponentData, IModComponent
{
public bool HasHadEggStarter;
public bool HasHadEggMain;
public bool HasHadEggDessert;
}
}
+10
View File
@@ -0,0 +1,10 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct CShouldShakeBushes : IComponentData, IModComponent
{
}
}
+6
View File
@@ -0,0 +1,6 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
}
+12
View File
@@ -0,0 +1,12 @@
using KitchenMods;
using Unity.Entities;
namespace Easter2025.Components
{
public struct SHasTriggeredBunnies : IComponentData, IModComponent
{
public struct RewardMarker : IComponentData, IModComponent
{
}
}
}