Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit f0612286 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

AirDrag: Change Entry from class to struct

parent 296e909b
No related branches found
No related tags found
No related merge requests found
......@@ -56,11 +56,11 @@ namespace TUGraz.VectoCore.Models.Declaration
row => new Entry(row.ParseDouble("a1"), row.ParseDouble("a2"), row.ParseDouble("a3")));
}
public class Entry
public struct Entry
{
public double A1;
public double A2;
public double A3;
public readonly double A1;
public readonly double A2;
public readonly double A3;
public Entry(double a1, double a2, double a3)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment