mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-18 00:34:35 +00:00
26 lines
595 B
C#
26 lines
595 B
C#
using Campofinale.Resource;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Campofinale.Game.Factory.FactoryNode;
|
|
|
|
namespace Campofinale.Game.Factory.Components
|
|
{
|
|
public class FComponentPowerSave : FComponent
|
|
{
|
|
public FComponentPowerSave(uint id) : base(id, FCComponentType.PowerSave)
|
|
{
|
|
}
|
|
|
|
public override void SetComponentInfo(ScdFacCom proto)
|
|
{
|
|
proto.PowerSave = new()
|
|
{
|
|
PowerSave=100000
|
|
};
|
|
}
|
|
}
|
|
}
|