Commit #3
[smartthings-infrastructure.git] / appTouch / Touch.groovy
1 //Create a class for touch
2 package appTouch
3
4 public class Touch {
5         private int touched = 0
6
7         Touch(int touched) {
8                 this.touched = touched
9         }
10 }