Skip to content

Commit

Permalink
Add macro crate to cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
giusdp committed Jan 15, 2024
1 parent b75c5c0 commit f9cc510
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,17 @@ type_complexity = "allow"
too_many_arguments = "allow"

[dependencies]
bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] }
thiserror = "1.0"
serde = { version = "1" }
serde_ron = { version = "0.8", package = "ron" }
aery = "0.5.2"
indexmap = "2.1.0"

# Bevy Dependencies
bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] }
bevy-trait-query = "0.4.0"
aery = "0.5.2"

bevy_talks_macros = { path = "macros" }

[dev-dependencies]
bevy = { version = "0.12" }
Expand Down
1 change: 0 additions & 1 deletion src/events/node_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use crate::prelude::{Actor, Choice, ChoiceNode, JoinNode, LeaveNode, TextNode};

use super::{NodeEventEmitter, ReflectEvent};

// TODO: start and end events
/// Start event sent when a talk is started.
/// It happens when a next action request is sent to the talk that is still in the start node.
/// Contains the talk parent entity.
Expand Down

0 comments on commit f9cc510

Please sign in to comment.