10 lines
143 B
C++
10 lines
143 B
C++
#include "../noise.h"
|
|
|
|
class noiserandom:public noise {
|
|
|
|
};
|
|
|
|
noiserandom* createnoise() {
|
|
noiserandom* neo=new noiserandom();
|
|
return neo;
|
|
}
|