Major Changes including Options menu, logic blocks, modding system, and more.
This commit is contained in:
14
src/Levels/LevelData.cs
Normal file
14
src/Levels/LevelData.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
namespace FoodFactory;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Chickensoft.Introspection;
|
||||
using Chickensoft.Serialization;
|
||||
using FoodFactory.Equipment;
|
||||
|
||||
[Meta, Id("level_data")]
|
||||
public partial record LevelData
|
||||
{
|
||||
[Save("equipment_data")]
|
||||
public required Dictionary<EquipmentId, EquipmentData> Equipments { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user