Skip to content

Commit

Permalink
CamelCase added
Browse files Browse the repository at this point in the history
  • Loading branch information
benstyle11 authored and ctmbl committed Dec 15, 2021
1 parent 58a30f9 commit 49e1142
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ typedef struct



class Physical_entity
class PhysicalEntity
{
private:
sf::Vector2f pos;
Expand All @@ -23,15 +23,15 @@ class Physical_entity
void getCollider();
void setCollider(Collider newCollider);

Physical_entity(/* args */);
~Physical_entity();
PhysicalEntity(/* args */);
~PhysicalEntity();
};

Physical_entity::Physical_entity(/* args */)
PhysicalEntity::PhysicalEntity(/* args */)
{
}

Physical_entity::~Physical_entity()
PhysicalEntity::~PhysicalEntity()
{
}

Expand Down

0 comments on commit 49e1142

Please sign in to comment.