Skip to content
Snippets Groups Projects
Commit e64d31e7 authored by cmaffeo2's avatar cmaffeo2
Browse files

Added Restaint.h containing struct; this should have been added earlier

parent f1b4393b
No related branches found
No related tags found
No related merge requests found
// Exclude.h
// Copyright Justin Dufresne and Terrance Howard, 2013
#pragma once
#include "useful.h"
struct Restraint {
public:
Restraint() : id(-1) {}
Restraint(int id, Vector3 r0, int k) : id(id), r0(r0), k(k) {}
int id;
Vector3 r0;
float k;
};
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