mirror of
https://github.com/zeldaret/ss
synced 2026-06-01 01:39:17 -04:00
13 lines
193 B
C++
13 lines
193 B
C++
#ifndef TOBESORTED_MDL_BASE_H
|
|
#define TOBESORTED_MDL_BASE_H
|
|
|
|
#include "egg/core/eggDisposer.h"
|
|
|
|
class dMdl_c : public EGG::Disposer {
|
|
protected:
|
|
dMdl_c();
|
|
virtual ~dMdl_c();
|
|
};
|
|
|
|
#endif
|