File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ public class ProductDefinition : ItemDefinition
2727 /// INTERNAL: Creates a product definition from the in-game product definition.
2828 /// </summary>
2929 /// <param name="productDefinition"></param>
30- #if IL2CPPBEPINEX || IL2CPPMELON
30+ #if IL2CPPBEPINEX || IL2CPPMELON
3131 internal ProductDefinition ( Il2CppScheduleOne . ItemFramework . ItemDefinition productDefinition ) : base ( productDefinition ) { }
3232#else
3333 internal ProductDefinition ( ScheduleOne . ItemFramework . ItemDefinition productDefinition ) : base ( productDefinition ) { }
34- #endif
34+ #endif
3535 /// <summary>
3636 /// The price associated with this product.
3737 /// </summary>
Original file line number Diff line number Diff line change 11using S1API . Internal . Utils ;
2-
3- #if ( IL2CPPMELON || IL2CPPBEPINEX )
2+ #if ( IL2CPPMELON )
43using S1Product = Il2CppScheduleOne . Product ;
5-
6- #else
4+ #elif ( MONOMELON || MONOBEPINEX || IL2CPPBEPINEX )
75using S1Product = ScheduleOne . Product ;
86#endif
97
Original file line number Diff line number Diff line change 11#if ( IL2CPPMELON || IL2CPPBEPINEX )
22using S1Product = Il2CppScheduleOne . Product ;
33using Il2CppScheduleOne . ItemFramework ;
4-
54#elif ( MONOMELON || MONOBEPINEX || IL2CPPBEPINEX )
65using S1Product = ScheduleOne . Product ;
76using ScheduleOne . ItemFramework ;
Original file line number Diff line number Diff line change 11#if IL2CPPBEPINEX || IL2CPPMELON
22using InternalQuality = Il2CppScheduleOne . ItemFramework . EQuality ;
3- #else
3+ #elif ( MONOMELON || MONOBEPINEX || IL2CPPBEPINEX )
44using InternalQuality = ScheduleOne . ItemFramework . EQuality ;
55#endif
66namespace S1API . Products
@@ -15,27 +15,28 @@ namespace S1API.Products
1515 public enum Quality
1616 {
1717 /// <summary>
18- /// Represents the lowest quality level, indicating an item of no value or unusable condition.
18+ /// Represents "Trash" Quality
1919 /// </summary>
2020 Trash = 0 ,
2121
2222 /// <summary>
23- /// Represents a quality level that is below standard but better than trash-quality.
23+ /// Represents "Poor" Quality
2424 /// </summary>
2525 Poor = 1 ,
2626
2727 /// <summary>
28- /// Represents a standard level of quality in the predefined quality enumeration.
29- /// Typically used to indicate an average or commonly acceptable quality level.
28+ /// Represents "Standard" Quality
3029 /// </summary>
3130 Standard = 2 ,
3231
3332 /// <summary>
34- /// Represents a higher-tier quality level compared to lower
33+ /// Represents "Premium" quality
34+ /// </summary>
3535 Premium = 3 ,
3636
3737 /// <summary>
38- /// Represents the highest level of quality, denoted as "Heavenly".
38+ /// Represents "Heavenly" quality
39+ /// </summary>
3940 Heavenly = 4
4041 }
4142
You can’t perform that action at this time.
0 commit comments