DisplayVisibility.java 215 B

12345678910111213
  1. /*
  2. * Roughly Enough Items by Danielshe.
  3. * Licensed under the MIT License.
  4. */
  5. package me.shedaniel.rei.api;
  6. public enum DisplayVisibility {
  7. ALWAYS_VISIBLE,
  8. CONFIG_OPTIONAL,
  9. NEVER_VISIBLE,
  10. PASS
  11. }