2023-01-10 15:14:30 +00:00
|
|
|
/* godot-cpp integration testing project.
|
|
|
|
*
|
|
|
|
* This is free and unencumbered software released into the public domain.
|
|
|
|
*/
|
2022-08-24 13:09:07 +00:00
|
|
|
|
|
|
|
#ifndef TESTS_H
|
|
|
|
#define TESTS_H
|
|
|
|
|
2024-06-25 13:28:04 +00:00
|
|
|
#include <godot_cpp/templates/cowdata.hpp>
|
|
|
|
#include <godot_cpp/templates/hash_map.hpp>
|
|
|
|
#include <godot_cpp/templates/hash_set.hpp>
|
|
|
|
#include <godot_cpp/templates/hashfuncs.hpp>
|
|
|
|
#include <godot_cpp/templates/list.hpp>
|
|
|
|
#include <godot_cpp/templates/local_vector.hpp>
|
|
|
|
#include <godot_cpp/templates/pair.hpp>
|
|
|
|
#include <godot_cpp/templates/rb_map.hpp>
|
|
|
|
#include <godot_cpp/templates/rb_set.hpp>
|
|
|
|
#include <godot_cpp/templates/rid_owner.hpp>
|
|
|
|
#include <godot_cpp/templates/safe_refcount.hpp>
|
|
|
|
#include <godot_cpp/templates/search_array.hpp>
|
|
|
|
#include <godot_cpp/templates/self_list.hpp>
|
|
|
|
#include <godot_cpp/templates/sort_array.hpp>
|
|
|
|
#include <godot_cpp/templates/spin_lock.hpp>
|
|
|
|
#include <godot_cpp/templates/thread_work_pool.hpp>
|
|
|
|
#include <godot_cpp/templates/vector.hpp>
|
|
|
|
#include <godot_cpp/templates/vmap.hpp>
|
|
|
|
#include <godot_cpp/templates/vset.hpp>
|
2022-08-24 13:09:07 +00:00
|
|
|
|
|
|
|
#endif // TESTS_H
|