Files
shweets-sim/src/state/select/info.hpp
shweet 17f3348e94
Some checks failed
Build / Build Game (push) Has been cancelled
The Mega Snivy Update
2026-02-28 21:48:00 -05:00

16 lines
235 B
C++

#pragma once
#include "../../resources.hpp"
namespace game::state::select
{
class Info
{
public:
bool isContinue{};
bool isNewGame{};
bool isNewGameWarning{};
void update(Resources&, int characterIndex);
};
}