22 lines
525 B
Python
22 lines
525 B
Python
# ------------------------------------------------------------
|
||
# AAC Coder/Decoder - Configuration
|
||
#
|
||
# Multimedia course at Aristotle University of
|
||
# Thessaloniki (AUTh)
|
||
#
|
||
# Author:
|
||
# Christos Choutouridis (ΑΕΜ 8997)
|
||
# cchoutou@ece.auth.gr
|
||
#
|
||
# Description:
|
||
# This module contains the global configurations
|
||
#
|
||
# ------------------------------------------------------------
|
||
from __future__ import annotations
|
||
|
||
# Imports
|
||
from core.aac_types import WinType
|
||
|
||
# Window type
|
||
# Options: "SIN", "KBD"
|
||
WIN_TYPE: WinType = "SIN" |