mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 04:07:48 +00:00
24 lines
653 B
C#
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;
|
|
}
|
|
}
|
|
}
|