File size: 300 Bytes
d747bc4
 
 
581c2fc
 
 
 
 
 
 
 
d747bc4
feb1c4e
d747bc4
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st

from battlewords.ui import run_app


def _new_game() -> None:
    st.session_state.clear()
    _init_session()
    st.rerun()


def main():
    st.set_page_config(page_title="Battlewords (Proof Of Concept)", layout="wide")
    run_app()


if __name__ == "__main__":
    main()