12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
- goog.provide('Blockly.Blocks.Platform');
- goog.require('Blockly.Blocks');
- Blockly.Blocks.Platform.HUE = "#79bc53";
- Blockly.Blocks['Platform_import'] = {
-
- init: function() {
- this.setColour(Blockly.Blocks.Platform.HUE);
- this.appendDummyInput()
- .appendField(Blockly.Msg.PLATFORM_IMPORT);
-
-
- this.setPreviousStatement(true);
- this.setNextStatement(true);
- },
- };
|