lfs, current build

This commit is contained in:
2026-08-08 15:20:37 -04:00
parent 2efed2a443
commit a5904b917b
397 changed files with 215918 additions and 2458 deletions
+5 -1
View File
@@ -19,6 +19,9 @@ namespace game::state::play
bool isTerminal{};
bool isStartEffectsApplied{};
bool isBlipQueued{};
bool isSceneActive{};
bool isAnimationEntryStarted{};
float animationEntryTimePrevious{};
public:
static constexpr auto LIFETIME = 10.0f;
@@ -28,10 +31,11 @@ namespace game::state::play
bool isEnabled{true};
float time{};
void set(resource::xml::Schema::Element*, Entity&, bool isInterruptible = true);
void set(resource::xml::Schema::Element*, Entity&, bool isInterruptible = true, bool isSequenceAdvance = false);
void update(Entity&, Canvas&);
bool is_interruptible() const;
bool is_finished() const;
bool is_terminal() const;
bool is_scene_active() const;
};
}