You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
260 B
C++

#pragma once
#include "classicactions.h"
#include "core/gameevent.h"
#include "core/point.h"
#include <vector>
struct ElementInitializer
{
Type type = Type::NONE;
kku::Point position;
std::vector<kku::Point> falling_curve_interpolation;
};