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

abstract public class ValueInput : InputSubmodule {

	public override InputSubmodule.InputTypes inputType
    {
        get { return InputSubmodule.InputTypes.value; }
    }
}
