コード例 #1
0
ファイル: Lobby.cs プロジェクト: MexicanMan/Trapping
        public bool PlaceTrap(string token, string trap, int xpos, int ypos, out bool placed)
        {
            placed = false;
            if (status != LobbyStatus.Started)
            {
                return(false);
            }
            bool show = GM.PlaceTrap(token, trap, xpos, ypos, out placed);

            return(show);
        }