FittsLaw/Assets/Scripts/Sample.cs

23 lines
635 B
C#
Raw Normal View History

2018-11-29 13:14:03 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Assets.Scripts
{
class Sample
{
public string Platform { get; set; }
public int ParticipantID { get; set; }
public double Angle { get; set; }
public double Distance { get; set; }
public double Time { get; set; }
public bool Direction { get; set; }
public string DotName { get; set; }
public int TrialIndex { get; set; }
public int DotIndex { get; set; }
public long Timestamp { get; set; }
2020-05-15 23:27:31 -04:00
public int DotSize = 100;
2018-11-29 13:14:03 -05:00
}
}