2
0

Registers.java 202 B

1234567891011
  1. package com.gmail.nossr50.config;
  2. /**
  3. * A class that is expected to register one thing into another thing
  4. */
  5. public interface Registers {
  6. /**
  7. * Register stuff
  8. */
  9. void register();
  10. }