천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace SHARP_CLAS_UI
    public class a : Base_Unit
    {
        public override bool Is_Home_Complete
        {
            get
            {
                throw new NotImplementedException();
            }
        }
 
        public override bool Is_Exist
        {
            get
            {
                throw new NotImplementedException();
            }
        }
 
        public a(Equipment _equip) : base("a")
        {
            Write_Sequence_Log("a");
        }
 
        public override void Status_Working()
        {
 
        }
 
        public override void Sequence_Working()
        {
 
        }
    }
}