1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-18 12:53:19 +02:00
SpaceCadetPinball/SpaceCadetPinball/TEdgeBox.h
Muzychenko Andrey 81c2034a16 Replaced objlist_class with std::vector.
Fixed minor bug in TLightGroup.
Cleaned up some warnings.
2021-10-01 18:55:44 +03:00

12 lines
175 B
C++

#pragma once
struct field_effect_type;
class TEdgeSegment;
class TEdgeBox
{
public:
std::vector<TEdgeSegment*> EdgeList{};
std::vector<field_effect_type*> FieldList{};
};