TShockAPI.Hooks.RegionHooks.OnRegionCreated C# (CSharp) Method

OnRegionCreated() public static method

public static OnRegionCreated ( Region region ) : void
region TShockAPI.DB.Region
return void
        public static void OnRegionCreated(Region region)
        {
            if (RegionCreated == null)
                return;

            RegionCreated(new RegionCreatedEventArgs(region));
        }