aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/imperative.rs
blob: 61a47620fcc8732b7862e88e86c0cf1652f50f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use crate::shared::*;
use serde::Deserialize;
use serde::Serialize;

#[derive(Component, Copy, Clone, PartialEq, Debug, Deserialize, Serialize)]
pub enum Imperative {
    Idle,
    WalkTo(Vec2),
    AttackTarget(AttackKey, PlayerId),
    AttackDirection(AttackKey, Vec2),
}

#[derive(Resource, Copy, Clone, PartialEq, Debug, Deserialize, Serialize)]
pub enum AttackKey {
    A,
    Q,
    W,
    E,
    R,
    D,
    F,
}