16 lines
315 B
C#
16 lines
315 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Core
|
|
{
|
|
interface IEquationComponent
|
|
{
|
|
public ComponentType Type { get; set; }
|
|
public string Arg1 { get; set; }
|
|
public string Arg2 { get; set; }
|
|
public void Operate();
|
|
}
|
|
}
|