﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class BoolToButton : PropertyAttribute {

	public readonly string variableName = "";

	public BoolToButton (string varName) {
		this.variableName = varName;
	}
}
