mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-10-29 12:32:12 +01:00
10 lines
148 B
C#
10 lines
148 B
C#
using UnityEngine;
|
|
|
|
public class ConveyorPO : PlacedObject
|
|
{
|
|
public override void OnPlace()
|
|
{
|
|
Debug.Log("Conveyor placed");
|
|
}
|
|
}
|