WIP C++ example

This commit is contained in:
Patrick Dawson
2022-11-23 06:15:09 +01:00
parent ba9d617480
commit 2ebac092fe
21 changed files with 442 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <godot_cpp/godot.hpp>
#include <gtest/gtest.h>
#include <mycppnode.h>
TEST(SomethingTest, DoAThing)
{
ASSERT_TRUE(true);
}