mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-07-18 19:41:54 +08:00
Components!
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Strawberry
|
||||
{
|
||||
@ -9,5 +10,17 @@ namespace Strawberry
|
||||
{
|
||||
return value > target ? Math.Max(value - maxDelta, target) : Math.Min(value + maxDelta, target);
|
||||
}
|
||||
|
||||
static public void Log()
|
||||
{
|
||||
Debug.WriteLine("***");
|
||||
}
|
||||
|
||||
static public void Log<T>(T v)
|
||||
{
|
||||
String string = scope String;
|
||||
v.ToString(string);
|
||||
Debug.WriteLine(string);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user