16 lines
307 B
C#
16 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Core
|
|
{
|
|
public class Operations
|
|
{
|
|
public void EquParserLoop(string equ, out float output) {
|
|
if (equ != "") { output = 0.0f; }
|
|
else { output = 0.0f; }
|
|
}
|
|
}
|
|
}
|