mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
81c2034a16
Fixed minor bug in TLightGroup. Cleaned up some warnings.
12 lines
175 B
C++
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{};
|
|
};
|