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

public class BoolToButton : PropertyAttribute {

	public readonly string variableName = "";
	public readonly string nameDisplay = "";

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