﻿var Block = Class.extend
({
	// Note: it is damn important to have mutable instance
	// variables declared with null as otherwise all
	// inheritors will share same variable
	blockElement: null,

	init: function(blockElement)
	{
		this.blockElement = blockElement;
	}
});
