Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
setchi committed Jan 18, 2020
1 parent 07db408 commit 53dcd00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Inspector で下記の設定をすることで無限スクロールを実装で
### Implementation
セルにデータを渡すためのオブジェクトを定義します。
```csharp
public class ItemData
class ItemData
{
public string Message { get; }

Expand All @@ -108,7 +108,7 @@ using UnityEngine;
using UnityEngine.UI;
using FancyScrollView;

public class MyCell : FancyCell<ItemData>
class MyCell : FancyCell<ItemData>
{
[SerializeField] Text message = default;

Expand All @@ -130,7 +130,7 @@ using UnityEngine;
using System.Linq;
using FancyScrollView;

public class MyScrollView : FancyScrollView<ItemData>
class MyScrollView : FancyScrollView<ItemData>
{
[SerializeField] Scroller scroller = default;
[SerializeField] GameObject cellPrefab = default;
Expand All @@ -154,7 +154,7 @@ public class MyScrollView : FancyScrollView<ItemData>
using UnityEngine;
using System.Linq;

public class EntryPoint : MonoBehaviour
class EntryPoint : MonoBehaviour
{
[SerializeField] MyScrollView myScrollView = default;

Expand Down

0 comments on commit 53dcd00

Please sign in to comment.