mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-30 08:41:14 +00:00
21 lines
218 B
C++
21 lines
218 B
C++
#pragma once
|
|
|
|
|
|
#ifndef QUAT_H
|
|
#define QUAT_H
|
|
|
|
#include "export.h"
|
|
|
|
class CQuat {
|
|
public:
|
|
|
|
int x,y,z,w;
|
|
|
|
};
|
|
|
|
void validate_CQuat(void);
|
|
|
|
EXPORT void Quat_Slerp (CQuat& a1, CQuat const & a2, int a3, CQuat& a4);
|
|
|
|
#endif
|