UserInterface with TextMessages implemented.

This commit is contained in:
Mal
2020-02-24 21:09:21 +01:00
parent 88d1c0db87
commit 479a150f9d
9 changed files with 167 additions and 41 deletions

9
js/ui/TextAlignment.js Normal file
View File

@@ -0,0 +1,9 @@
const TextAlignment = {
LEFT: 0,
CENTER: 1,
RIGHT: 2,
TOP: 3,
BOTTOM: 4,
};
export default TextAlignment;