20 lines
301 B
C#
20 lines
301 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace FLGenerateLibrary
|
|||
|
{
|
|||
|
public enum Rarity
|
|||
|
{
|
|||
|
Trash,
|
|||
|
Common,
|
|||
|
Uncommon,
|
|||
|
Rare,
|
|||
|
Unique,
|
|||
|
Alien,
|
|||
|
Artifact,
|
|||
|
Blueprint,
|
|||
|
Solar
|
|||
|
}
|
|||
|
}
|