Added bare bones physics

This commit is contained in:
andreja6
2020-03-06 23:28:49 -08:00
parent 6fb111067d
commit f92f01be88
5 changed files with 96 additions and 20 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "GroupInstance.h"
#include "PartInstance.h"
class WorkspaceInstance :
public GroupInstance
@@ -7,5 +8,5 @@ class WorkspaceInstance :
public:
WorkspaceInstance(void);
~WorkspaceInstance(void);
std::vector<PVInstance *> physicalObjects;
std::vector<PartInstance *> partObjects;
};