1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 12:17:46 +00:00
project-meteor-server/Map Server/DataObjects/Recipe.cs
2021-02-26 21:10:01 -05:00

24 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;
}
}
}