Rename `side_scroller_movement_animation` files to `ssma_component`

This commit is contained in:
SeanOMik 2020-07-06 01:02:26 -05:00
parent 0969a9fb12
commit 542974caa7
No known key found for this signature in database
GPG Key ID: FA4D55AC05268A88
3 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
#include <simpleengine/event.h>
#include <simpleengine/entity.h>
#include <simpleengine/components/movement/movement_component.h>
#include <simpleengine/components/side_scroller_movement_animation_component.h>
#include <simpleengine/components/ssma_component.h>
#include <simpleengine/events/entity_event.h>
#include <simpleengine/animation.h>

View File

@ -4,8 +4,8 @@
// Email: seanomik@gmail.com
//
#ifndef SIMPLEENGINE_SIDE_SCROLLER_MOVEMENT_ANIMATION_COMPONENT_H
#define SIMPLEENGINE_SIDE_SCROLLER_MOVEMENT_ANIMATION_COMPONENT_H
#ifndef SIMPLEENGINE_SSMA_COMPONENT_H
#define SIMPLEENGINE_SSMA_COMPONENT_H
#include "../component.h"
#include "animation_component.h"
@ -47,4 +47,4 @@ namespace simpleengine {
}
#endif //SIMPLEENGINE_SIDE_SCROLLER_MOVEMENT_ANIMATION_COMPONENT_H
#endif //SIMPLEENGINE_SSMA_COMPONENT_H

View File

@ -4,7 +4,7 @@
// Email: seanomik@gmail.com
//
#include "components/side_scroller_movement_animation_component.h"
#include "components/ssma_component.h"
simpleengine::SideScrollerMovementAnimationComponent::SideScrollerMovementAnimationComponent(simpleengine::Entity &owning_entity,
sf::Sprite &sprite, sf::Texture &texture_sheet, float max_velocity, float acceleration, float deceleration)