update building

This commit is contained in:
2024-04-01 23:46:13 +03:00
parent 5bd625add4
commit 9bb20dcc32
26 changed files with 140 additions and 50 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="GuessingScene" parent="GtkApplicationWindow">
<property name="title">Guessing</property>
<child>
<object class="GtkBox" id="content">
<property name="orientation">vertical</property>
<child>
<object class="GtkLabel" id="question_label">
<property name="label">There's a question:</property>
</object>
</child>
<child>
<object class="GtkEntry" id="answer_entry">
<property name="placeholder_text">Answer</property>
</object>
</child>
<child>
<object class="GtkLabel" id="stats_label">
<property name="label">Correct|Incorrect: 0|0</property>
</object>
</child>
</object>
</child>
</template>
</interface>

View File