method accessibility changes

This commit is contained in:
devZoGok
2021-10-19 19:06:42 +03:00
parent 01110b89ac
commit cc6a4e19f5
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -15,7 +15,6 @@ namespace vb01{
Mesh *mesh = nullptr;
};
static void retrieveCollisions(Vector3, Vector3, Node*, std::vector<CollisionResult>&, const float = .0);
private:
static void castRay(Vector3, Vector3, Node*, std::vector<CollisionResult>&, const float);
static void sortResults(std::vector<CollisionResult>&);
};
+1 -1
View File
@@ -36,11 +36,11 @@ namespace vb01{
inline void setLeftToRight(bool ltr){this->leftToRight = ltr;}
inline Material* getMaterial(){return material;}
inline void setMaterial(Material *mat){this->material = mat;}
Glyph* getGlyph(u16);
private:
void initFont(std::string);
void prepareGlyphs(Glyph, Vector2);
void renderGlyphs(Glyph, float[], u32);
Glyph* getGlyph(u16);
Node *node = nullptr;
Material *material = nullptr;