30 lines
670 B
C#
30 lines
670 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Revitalize.Framework.Objects.InformationFiles;
|
|
using Revitalize.Framework.Objects.InformationFiles.Furniture;
|
|
|
|
namespace Revitalize.Framework.Objects.Furniture
|
|
{
|
|
public class FurnitureTileComponent:MultiTiledComponent
|
|
{
|
|
public FurnitureInformation furnitureInfo;
|
|
|
|
|
|
public FurnitureTileComponent():base()
|
|
{
|
|
|
|
}
|
|
|
|
public FurnitureTileComponent(BasicItemInformation itemInfo,FurnitureInformation furnitureInfo):base(itemInfo)
|
|
{
|
|
this.furnitureInfo = furnitureInfo;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|