﻿namespace GameCreator.Runtime.Common.Mathematics
{
    internal interface ISymbol
    {
        float Evaluate();
    }
}