mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-16 23:54:36 +00:00
22 lines
509 B
C#
22 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Campofinale.Game.Factory.BuildingsBehaviour
|
|
{
|
|
public class NodeBuildingBehaviour
|
|
{
|
|
public virtual void Update(FactoryChapter chapter, FactoryNode node)
|
|
{
|
|
|
|
}
|
|
//Executed the first time when created a node that use the specific behaviour
|
|
public virtual void Init(FactoryChapter chapter, FactoryNode node)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|