git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@172 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-04 22:27:10 +00:00
parent 2041b11e23
commit 6e1d4472b1
3 changed files with 12 additions and 14 deletions

View File

@@ -2,16 +2,16 @@
#include <Mw/Milsko.h>
int main(){
int main() {
MwWidget window = MwVaCreateWidget(MwWindowClass, "main", NULL, 0, 0, 500, 500,
MwNtitle, "main",
NULL);
int i;
MwNtitle, "main",
NULL);
int i;
for(i = 0; i < 500 / 16; i++){
for(i = 0; i < 500 / 16; i++) {
MwVaCreateWidget(MwScrollBarClass, "scroll", window, 16 * i, 0, 16, 500,
MwNorientation, MwVERTICAL,
NULL);
MwNorientation, MwVERTICAL,
NULL);
}
MwLoop(window);