This repository has been archived on 2024-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
continuity/Content/Items/Materials/Coal.cs

21 lines
455 B
C#
Raw Normal View History

2024-11-13 17:58:19 +00:00
using Continuity.Content.Tiles;
2024-11-12 11:48:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
2024-11-12 11:48:36 +00:00
using System.Text;
using System.Threading.Tasks;
using Terraria;
2024-11-12 11:48:36 +00:00
using Terraria.ModLoader;
2024-11-13 17:58:19 +00:00
namespace Continuity.Content.Items.Materials
2024-11-12 11:48:36 +00:00
{
public class Coal : ModItem
2024-11-12 11:48:36 +00:00
{
public override void SetDefaults()
2024-11-12 11:48:36 +00:00
{
Item.DefaultToPlaceableTile(ModContent.TileType<CoalTile>());
2024-11-12 11:48:36 +00:00
}
}
}