Initial Commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CBunny : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CCanHideItem : IComponentData, IModComponent, IApplianceProperty
|
||||
{
|
||||
public int HiddenItem;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CCanTriggerOrangeOrbs : IComponentData, IModComponent, IItemProperty
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CCanTriggerOrbs : IComponentData, IModComponent, IItemProperty
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CCompletedAchievementEntity : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CEgg : IComponentData, IModComponent, IItemProperty
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CEggBush : IComponentData, IModComponent, IApplianceProperty
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CEventBunny : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CHasOrangeOrbs : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CHasOrbs : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using KitchenData;
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CHidableItem : IComponentData, IModComponent, IItemProperty
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct CShouldShakeBushes : IComponentData, IModComponent
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using KitchenMods;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace Easter2025.Components
|
||||
{
|
||||
public struct SHasTriggeredBunnies : IComponentData, IModComponent
|
||||
{
|
||||
public struct RewardMarker : IComponentData, IModComponent
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user