mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2026-08-15 05:16:36 +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;
|
|
};
|
|
|