質問編集履歴

2

写真を追加しました

2018/03/05 07:20

投稿

SIByL
SIByL

スコア11

test CHANGED
File without changes
test CHANGED
@@ -51,3 +51,9 @@
51
51
  @font = @screen.factory.newfont("MSPゴシック", 12)
52
52
 
53
53
  ```
54
+
55
+
56
+
57
+ ![イメージ説明](31feb2027522ca112c01dfccbc3574cd.png)
58
+
59
+ ![イメージ説明](e9dae37c5d42d096dd6a1a8c5e3d344c.png)

1

本に書かれてある解説部分を追記しました。

2018/03/05 07:20

投稿

SIByL
SIByL

スコア11

test CHANGED
File without changes
test CHANGED
@@ -32,12 +32,22 @@
32
32
 
33
33
 
34
34
 
35
- def construct
35
+ def construct
36
36
 
37
- @noby = Unmo.new("noby")
37
+ #ノビィ作成(人工無能のことです)
38
38
 
39
- self.caption = "Unmo System : " + "@noby.name”
39
+ @noby = Unmo.new("noby")
40
40
 
41
+
42
+
43
+  #ウィンドウタイトル
44
+
45
+ self.caption = "Unmo System : " + @noby.name
46
+
47
+
48
+
49
+  #フォントの準備
50
+
41
- @font = @screen.factory.newfont("MSPゴシック", 12)
51
+ @font = @screen.factory.newfont("MSPゴシック", 12)
42
52
 
43
53
  ```