mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-24 05:49:48 +00:00
17 lines
213 B
C++
17 lines
213 B
C++
#pragma once
|
|
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "export.h"
|
|
class CClass
|
|
{
|
|
public:
|
|
|
|
EXPORT void * operator new(unsigned int size);
|
|
EXPORT void operator delete(void*);
|
|
EXPORT virtual ~CClass();
|
|
};
|
|
|
|
#endif
|