Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- using iRacingSimulator;
- namespace DTSMClassLib
- {
- public class DTSM_Driver
- {
- public string IRDriverName { get; set; }
- public int IRUID { get; set; }
- public DTSM_Driver()
- {
- }
- public void SetProps(Sim info)
- {
- var driver = info.Driver;
- this.IRDriverName = driver.Name;
- this.IRUID = Convert.ToInt32(driver.CustId);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment