回答編集履歴

2

アクセス修飾子を修正

2020/12/01 12:58

投稿

PinoMatcha
PinoMatcha

スコア368

test CHANGED
@@ -10,11 +10,13 @@
10
10
 
11
11
  public class WordData {
12
12
 
13
- private string fCont; // 表面内容
13
+ // 2020/12/1 22:00 アクセス修飾子を修正しました。
14
14
 
15
- private string bCont; // 面内容
15
+ public string fCont; // 面内容
16
16
 
17
+ public string bCont; // 裏面内容
18
+
17
- private Image img; // 添付する写真
19
+ public Image img; // 添付する写真
18
20
 
19
21
 
20
22
 

1

誤字の修正

2020/12/01 12:58

投稿

PinoMatcha
PinoMatcha

スコア368

test CHANGED
@@ -70,7 +70,7 @@
70
70
 
71
71
  Debug.Log(wordList[id].fCont); // 日本語
72
72
 
73
- Debug.Log(wordList[id].bCont); // 英語
73
+ Debug.Log(wordList[id].bCont); // 英語
74
74
 
75
75
  }
76
76