Example #1
0
    public void CreateNewBlock(int slotIndex)
    {
        TableBlock new_block = blockManager.CreateNewBlock(slotIndex);

        if (action_create_blocks != null)
        {
            action_create_blocks(slotIndex, new_block);
        }
    }