Files
imgui-godot/doc/cpp-demo/test/test.cpp
Patrick Dawson e577ecbea3 C++ cleanup
2022-11-24 02:16:19 +01:00

11 lines
204 B
C++

#include "MyCppNode.h"
#include <godot_cpp/godot.hpp>
#include <gtest/gtest.h>
// make a Godot test runner, or just test modular game logic here
TEST(GameLogicTests, DoStuff)
{
ASSERT_TRUE(true);
}