small update
This commit is contained in:
parent
2b970003e5
commit
949342892c
|
|
@ -5,10 +5,10 @@
|
||||||
struct Action
|
struct Action
|
||||||
{
|
{
|
||||||
Action(u8 name_in, u8 type_in)
|
Action(u8 name_in, u8 type_in)
|
||||||
: name(name_in)
|
: type(type_in)
|
||||||
, type(type_in)
|
, name(name_in)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
u8 name;
|
|
||||||
u8 type;
|
u8 type;
|
||||||
|
u8 name;
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue