mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +00:00
25 lines
653 B
C#
25 lines
653 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Meteor.Map.DataObjects
|
|||
|
{
|
|||
|
class Recipe
|
|||
|
{
|
|||
|
public readonly uint resultItemID;
|
|||
|
public readonly uint resultQuantity;
|
|||
|
public readonly byte[] allowedCrafters;
|
|||
|
public readonly byte tier;
|
|||
|
|
|||
|
public Recipe(uint resultItemID, uint resultQuantity, byte[] allowedCrafters, byte tier)
|
|||
|
{
|
|||
|
this.resultItemID = resultItemID;
|
|||
|
this.resultQuantity = resultQuantity;
|
|||
|
this.allowedCrafters = allowedCrafters;
|
|||
|
this.tier = tier;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|