Rename `side_scroller_movement_animation` files to `ssma_component`
This commit is contained in:
parent
0969a9fb12
commit
542974caa7
|
@ -8,7 +8,7 @@
|
||||||
#include <simpleengine/event.h>
|
#include <simpleengine/event.h>
|
||||||
#include <simpleengine/entity.h>
|
#include <simpleengine/entity.h>
|
||||||
#include <simpleengine/components/movement/movement_component.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/events/entity_event.h>
|
||||||
#include <simpleengine/animation.h>
|
#include <simpleengine/animation.h>
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
// Email: seanomik@gmail.com
|
// Email: seanomik@gmail.com
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef SIMPLEENGINE_SIDE_SCROLLER_MOVEMENT_ANIMATION_COMPONENT_H
|
#ifndef SIMPLEENGINE_SSMA_COMPONENT_H
|
||||||
#define SIMPLEENGINE_SIDE_SCROLLER_MOVEMENT_ANIMATION_COMPONENT_H
|
#define SIMPLEENGINE_SSMA_COMPONENT_H
|
||||||
|
|
||||||
#include "../component.h"
|
#include "../component.h"
|
||||||
#include "animation_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
|
|
@ -4,7 +4,7 @@
|
||||||
// Email: seanomik@gmail.com
|
// Email: seanomik@gmail.com
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "components/side_scroller_movement_animation_component.h"
|
#include "components/ssma_component.h"
|
||||||
|
|
||||||
simpleengine::SideScrollerMovementAnimationComponent::SideScrollerMovementAnimationComponent(simpleengine::Entity &owning_entity,
|
simpleengine::SideScrollerMovementAnimationComponent::SideScrollerMovementAnimationComponent(simpleengine::Entity &owning_entity,
|
||||||
sf::Sprite &sprite, sf::Texture &texture_sheet, float max_velocity, float acceleration, float deceleration)
|
sf::Sprite &sprite, sf::Texture &texture_sheet, float max_velocity, float acceleration, float deceleration)
|
Loading…
Reference in New Issue