branches2.hpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-24 23:21:02 -06:00
parent c2babda0f7
commit 43af15e54a
3 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#include "branches2.hpp"
#include "branch2.hpp"
#include <vector>

2
src/state.cpp Normal file
View File

@ -0,0 +1,2 @@
#include "state.hpp"

7
src/state.hpp Normal file
View File

@ -0,0 +1,7 @@
#include "branches2.hpp"
class State
{
public:
Branches2 branches;
};