You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
namespace EnhancedScrollerDemos.ViewDrivenCellSizes
|
|
{
|
|
/// <summary>
|
|
/// Super simple data class to hold information for each cell.
|
|
/// </summary>
|
|
public class Data
|
|
{
|
|
public string someText;
|
|
|
|
/// <summary>
|
|
/// We will store the cell size in the model so that the cell view can update it
|
|
/// </summary>
|
|
public float cellSize;
|
|
}
|
|
}
|