Agregar archivos de proyecto.

This commit is contained in:
alexb737
2022-06-18 07:40:24 +02:00
parent e4c2d17816
commit e1e34021f7
12 changed files with 689 additions and 0 deletions

15
JansenLegViewer/Motor.cs Normal file
View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Numerics;
using System.Drawing;
namespace JansenLegSimulator
{
public class MotorRod : Rod
{
public override Vector2 StartPosition { get; set; }
}
}