no more windows??
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user