Object/Building/ObjectBuildingCity.cs

A small subclass of ObjectBuilding named City. It overrides OnBuildDone and only calls the base implementation, so it currently adds no behavior.

using Sandbox;
using System;
using static Sandbox.VideoWriter;

namespace Forp.Object.Building;

public class City : ObjectBuilding
{
	protected override void OnBuildDone()
	{
		base.OnBuildDone();
	}
}