no more windows??

This commit is contained in:
lewd-alt
2025-05-07 10:45:18 -07:00
parent eecd2a0399
commit 9d89d2cb6a
933 changed files with 408908 additions and 407973 deletions

View File

@@ -1,26 +1,27 @@
using System;
using System.Collections.Generic;
namespace _2DGAMELIB;
//outline/path/line basically represents a curve :3
[Serializable]
public class Out
namespace _2DGAMELIB
{
public List<Vector2D> ps = new List<Vector2D>();
public float Tension = 0.5f;
public bool Outline = true;
//outline/path/line basically represents a curve :3
[Serializable]
public class Out
{
public List<Vector2D> ps = new List<Vector2D>();
public Out()
{
}
public float Tension = 0.5f;
public bool Outline = true;
public Out(Out Out)
{
ps = new List<Vector2D>(Out.ps);
Tension = Out.Tension;
Outline = Out.Outline;
}
public Out()
{
}
public Out(Out Out)
{
ps = new List<Vector2D>(Out.ps);
Tension = Out.Tension;
Outline = Out.Outline;
}
}
}