123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include <Mathematics/Math.h>
- namespace WwiseGTE
- {
-
- template <typename Real, typename Type0, typename Type1>
- class TIQuery
- {
- public:
- struct Result
- {
-
-
-
-
-
-
-
- };
- Result operator()(Type0 const& primitive0, Type1 const& primitive1) const;
- };
- }
|