26 lines
301 B
C++
26 lines
301 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-14.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CBACKGROUND_H
|
|
#define DAYDREAM_CBACKGROUND_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Background : Component
|
|
{
|
|
float distanceLeftToCorrectTravelPosition;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CBACKGROUND_H
|