mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2025-02-16 14:50:11 +00:00
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{};
|
|
};
|