﻿using System;
using System.Collections.Generic;
using System.Text;

namespace JLGames.RocketDriver.CSharp.Languages.Lua
{
    public partial class Function : Statement
    {
        public FunctionName Name;

        public FunctionBody Body;

    }
}
