avatar
文章
366
标签
89
分类
53
Home
Archives
Tags
Categories
Link
张拓的博客ue4c++扫雷做的扫雷demo 返回首页
Home
Archives
Tags
Categories
Link

ue4c++扫雷做的扫雷demo

发表于2022-07-22|更新于2022-09-06|c++ue4
|浏览量:

源码地址

ue4c++扫雷demo,源码在github上

https://github.com/82488059/mine-clearance.git

文章作者: 张拓
文章链接: http://www.xssl.online/20220722/ue4/2022-07-22-ue4c++%E6%89%AB%E9%9B%B7/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 张拓的博客!
c++ue4
cover of previous post
上一篇
ue4c++格式化字符串
ue4c++格式化字符串函数说明 Format the specified string using the specified arguments. Replaces instances of {0} with indices from the given array matching the index specified in the token @param InFormatString A string representing the format expression @param InOrderedArguments An array of ordered arguments that match the tokens specified in InExpression @return A string containing the formatted text 1UE_NODISCARD static FString Format(const TCHAR* InFormatString, const FStringFormatOrdered...
cover of next post
下一篇
windows 服务中以用户管理员权限或普通权限启动进程
管理员权限启动进程windows服务中以用户管理员权限或普通权限启动进程 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889// 管理员权限启动进程#ifdef UNICODEMMSYSSHARED_EXPORT bool CreateProcessWithAdmin(const std::wstring& exe, const std::wstring& param, bool show)#elseMMSYSSHARED_EXPORT bool CreateProcessWithAdmin(const std::string& exe, const std::string& param, bool show)#endif // UNICODE{ H...
相关推荐
cover
2022-07-27
ue4c++格式化字符串
ue4c++格式化字符串函数说明 Format the specified string using the specified arguments. Replaces instances of {0} with indices from the given array matching the index specified in the token @param InFormatString A string representing the format expression @param InOrderedArguments An array of ordered arguments that match the tokens specified in InExpression @return A string containing the formatted text 1UE_NODISCARD static FString Format(const TCHAR* InFormatString, const FStringFormatOrdered...
cover
2022-09-24
c++17的std::from_chars
c++17中的std::from_chars1std::from_chars, std::from_chars_result 在头文件<charconv>定义 12345678910111213// (1) (C++17 起)std::from_chars_result from_chars(const char* first, const char* last, /*see below*/& value, int base = 10);// (2) (C++17 起)std::from_chars_result from_chars(const char* first, const char* last, float& value, std::chars_format fmt = std::chars_format::general);// (3) (C++17 起)std::from_chars_result from_chars(const char* first, const char* last, double& value, ...
cover
2022-09-24
boost多网卡udp组播绑定网卡发送
boost多网卡udp组播绑定网卡发送多网卡组播的时候,发送端要遍历本地ip进行发送。 sender.h123456789101112131415161718192021222324252627282930313233#pragma once//// sender.h// udp组播发送类//#include <iostream>#include <sstream>#include <string>#include <boost/asio.hpp>#include "sender.h"class multicast_sender{public: multicast_sender(boost::asio::io_context& io_context , const boost::asio::ip::address& multicast_address , const unsigned short multicast_port , cons...
cover
2022-09-24
boost多网卡udp组播绑定网卡接收
boost多网卡udp组播绑定网卡接收receiver.h12345678910111213141516171819202122232425262728293031#pragma once//// receiver.cpp// udp组播接收类//#include <array>#include <iostream>#include <string>#include <functional>#include <boost/asio.hpp>class multicast_receiver{public: multicast_receiver(boost::asio::io_context& io_context , const boost::asio::ip::address& listen_address , const unsigned short& multicast_port , const boost::asio::ip::add...
cover
2022-09-24
多网卡udp组播,客户端收不到
多网卡udp组播,客户端收不到多网卡组播的时候,发送端要遍历本地ip,给每个ip都发组播包,不能使用"0.0.0.0"。否则有可能收不到。接收端可以绑定"0.0.0.0"进行接收。 代码:发送端http://xssl.online/20220924/cpp/udp%E7%BB%84%E6%92%AD/ 接收端http://xssl.online/20220924/cpp/udp%E7%BB%84%E6%92%AD%E6%8E%A5%E6%94%B6/
cover
2013-07-09
ODBC连接数据库,防止忘记释放内存之使用模版类
使用模版类创建对像 防止忘记释放new的对像 因为VC6.0不能使用智能指针,所以写出此类 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263// RecordsetObject.h: interface for the CRecordsetObject class.//// #if !defined(AFX_RECORDSETOBJECT_H__3DCAE528_1138_4312_BCD9_052B5750324A__INCLUDED_)#define AFX_RECORDSETOBJECT_H__3DCAE528_1138_4312_BCD9_052B5750324A__INCLUDED_ #if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000/// creat BYZT 13.07.08/template<class...
avatar
张拓
多情自古空余恨,好梦由来最易醒
文章
366
标签
89
分类
53
Follow Me
公告
每天都有一个好心情
目录
  1. 1. 源码地址
最新文章
windows编译libtorrent
windows编译libtorrent2024-05-23
windows编译boost
windows编译boost2024-05-08
vscode远程调试linux
vscode远程调试linux2023-12-21
linux服务检查进程
linux服务检查进程2023-12-01
ubuntu配置vnc服务
ubuntu配置vnc服务2023-11-03
© 2020 - 2025 By 张拓
京ICP备2022021138号-2