I hereby claim:
- I am dustinfreeman on github.
- I am dustinfreeman (https://keybase.io/dustinfreeman) on keybase.
- I have a public key ASB1Q_ISRjzzKGNwTljWkbImsiCX5ukfXKL6Cnd9OJKrSAo
To claim this, I am signing this object:
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
I hereby claim:
To claim this, I am signing this object:
| for f in *.TGA; do mv ./"$f" ./"${f%.TGA}.tga"; done; | |
| for f in *.TGA.meta; do mv ./"$f" ./"${f%.TGA.meta}.tga.meta"; done; | |
| for f in *.tga.meta; do mv ./"$f" ./"${f%.tga.meta}.png.meta"; done; | |
| for f in *.tga; do convert ./"$f" ./"${f%.tga}.png"; done; | |
| # rm *.tga; rm *.tga.meta; |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <entityx/entityx.h> | |
| bool destruction_caught = false; | |
| entityx::Entity testEntity_global; | |
| struct TestEvent : public entityx::Event<TestEvent> { |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <entityx/entityx.h> | |
| struct TestComponent : entityx::Component<TestComponent> { | |
| explicit TestComponent(std::string _name = "test") { | |
| name = _name; | |
| } |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <entityx/entityx.h> | |
| std::vector<entityx::Entity> entities_vec; | |
| struct TestComponent : entityx::Component<TestComponent> { | |
| TestComponent(std::string _name = "test") { |