MCPcopy Create free account
hub / github.com/atraczyk/2d-engine / CTile

Method CTile

engine/src/tile.h:61–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59 void (*function) ();
60
61 CTile (int index = 0, bool c = false, std::uint16_t l = 0x0000,
62 void (*f) () = NULL)
63 {
64 tileIndex = index;
65 isCollidable = c;
66 collisionFlags = l;
67 function = f;
68 };
69
70 ~CTile (){};
71};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected