20 lines
529 B
C#
20 lines
529 B
C#
|
using Gamecraft.GUI.Blueprints;
|
|||
|
|
|||
|
namespace GamecraftModdingAPI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents a blueprint in the inventory. When placed it becomes a block group.
|
|||
|
/// </summary>
|
|||
|
public class Blueprint
|
|||
|
{
|
|||
|
public uint Id { get; }
|
|||
|
|
|||
|
/*public static void SelectBlueprint(Blueprint blueprint)
|
|||
|
{
|
|||
|
BlueprintUtil.SelectBlueprint(null, new BlueprintInventoryItemEntityStruct
|
|||
|
{
|
|||
|
blueprintResourceId = blueprint.Id
|
|||
|
});
|
|||
|
}*/
|
|||
|
}
|
|||
|
}
|