mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-17 04:14:37 +00:00
22 lines
525 B
C#
22 lines
525 B
C#
using Campofinale.Resource;
|
|
using static Campofinale.Game.Factory.FactoryNode;
|
|
|
|
namespace Campofinale.Game.Factory.Components
|
|
{
|
|
public class FComponentTravelPole : FComponent
|
|
{
|
|
public uint defaultNext;
|
|
public FComponentTravelPole(uint id) : base(id, FCComponentType.TravelPole)
|
|
{
|
|
}
|
|
|
|
public override void SetComponentInfo(ScdFacCom proto)
|
|
{
|
|
proto.TravelPole = new()
|
|
{
|
|
DefaultNext = defaultNext
|
|
};
|
|
}
|
|
}
|
|
}
|