mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-25 05:30:09 +00:00
18 lines
232 B
C++
18 lines
232 B
C++
#pragma once
|
|
#include "objlist_class.h"
|
|
|
|
|
|
struct field_effect_type;
|
|
class TEdgeSegment;
|
|
|
|
class TEdgeBox
|
|
{
|
|
public:
|
|
TEdgeBox();
|
|
~TEdgeBox();
|
|
|
|
objlist_class<TEdgeSegment>* EdgeList;
|
|
objlist_class<field_effect_type>* FieldList;
|
|
};
|
|
|