|
@@ -17,5 +17,12 @@ public class Beacon
|
|
|
public uint major { get; set; }
|
|
|
public GameObject beacon { get; set; }
|
|
|
public Button button { get; set; }
|
|
|
+ public bool enabled { get; set; }
|
|
|
+ public byte byteEnabled {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return enabled ? (byte) 1 : (byte) 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|