1
0
Fork 0

Create Order enumerator and a NoteBook class for package noteBook

This commit is contained in:
Ethanell 2020-04-02 11:24:44 +02:00
parent 68604e2e97
commit d40eea9e73
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package noteBook;
import input.Input;
public class NoteBook {
Input inputs[];
Input selected[];
}

6
src/noteBook/Order.java Normal file
View file

@ -0,0 +1,6 @@
package noteBook;
public enum Order {
CROISSANT,
DECREASING;
}