#pragma once

#include "test2.h"

class test2 {

private:
	float* t;

public:
	test2();
	float getT();
	void setAdressT(float* t);
};

