Skip to content

Instantly share code, notes, and snippets.

View dustinfreeman's full-sized avatar

Dustin Freeman dustinfreeman

View GitHub Profile
#include <iostream>
#include <string>
#include <vector>
#include <entityx/entityx.h>
struct TestComponent : entityx::Component<TestComponent> {
explicit TestComponent(std::string _name = "test") {
name = _name;
}