You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
495 B
C#

11 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.MotionPlat.AuxiliaryEquipment
{
public class DeviceFactory
{
/// <summary>
/// Check height
/// </summary>
public static LaserEquipment checkHeightDev { get; set; }
public static bool Init()
{
checkHeightDev = new LaserEquipment();
return checkHeightDev.Open();
}
}
}