mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2025-01-04 20:59:36 +01:00
16 lines
338 B
C++
16 lines
338 B
C++
#ifndef MATH_FIELDWISE_H
|
|
#define MATH_FIELDWISE_H
|
|
|
|
/* math_fieldwise.h */
|
|
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
#include "core/variant/variant.h"
|
|
|
|
Variant fieldwise_assign(const Variant &p_target, const Variant &p_source, const String &p_field);
|
|
|
|
#endif // TOOLS_ENABLED
|
|
|
|
#endif // MATH_FIELDWISE_H
|