mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-23 04:22:24 +00:00
17 lines
293 B
C
17 lines
293 B
C
|
#pragma once
|
||
|
#include "dobject.h"
|
||
|
#include "tarray.h"
|
||
|
#include "TRS.h"
|
||
|
#include "matrix.h"
|
||
|
|
||
|
|
||
|
class DBoneComponents : public DObject
|
||
|
{
|
||
|
DECLARE_CLASS(DBoneComponents, DObject);
|
||
|
public:
|
||
|
TArray<TArray<TRS>> trscomponents;
|
||
|
TArray<TArray<VSMatrix>> trsmatrix;
|
||
|
|
||
|
DBoneComponents() = default;
|
||
|
};
|