CSC8503_Advanced_Game_Technologies / Common / TextureBase.h
TextureBase.h
Raw
#pragma once

namespace NCL {
	namespace Rendering {
		class TextureBase
		{
		public:
			virtual ~TextureBase();
		protected:
			TextureBase();

		};
	}
}