├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CQSDK ├── CQAPI.h ├── CQAPI_EX.h ├── CQEVE.h ├── CQEVEBasic.h ├── CQEVEMsg.h ├── CQEVERequest.h ├── CQEVE_ALL.h ├── CQEVE_DiscussMsg.h ├── CQEVE_FriendAdd.h ├── CQEVE_GroupMsg.h ├── CQEVE_PrivateMsg.h ├── CQEVE_RequestAddFriend.h ├── CQEVE_RequestAddGroup.h ├── CQEVE_Status.h ├── CQLogger.h ├── CQMsgCode.h ├── CQMsgSend.h ├── CQTools.h ├── CQconstant.h ├── CQface.h ├── Unpack.h ├── bufstream.h └── cqdefine.h ├── CQSDKCPP ├── CQAPI.cpp ├── CQAPI_EX.cpp ├── CQEVE.cpp ├── CQTools.cpp ├── CQstream.cpp └── Unpack.cpp ├── Dice.cppcheck ├── Dice.sln ├── Dice.sln.DotSettings ├── Dice.sln.DotSettings.user ├── Dice ├── APPINFO.h ├── BlackListManager.cpp ├── BlackListManager.h ├── CQP.lib ├── CardDeck.cpp ├── CardDeck.h ├── CharacterCard.cpp ├── CharacterCard.h ├── CustomMsg.cpp ├── CustomMsg.h ├── Dice.cpp ├── Dice.ico ├── Dice.vcxproj ├── Dice.vcxproj.DotSettings ├── Dice.vcxproj.filters ├── Dice.vcxproj.user ├── DiceCloud.cpp ├── DiceCloud.h ├── DiceConsole.cpp ├── DiceConsole.h ├── DiceEvent.cpp ├── DiceEvent.h ├── DiceFile.cpp ├── DiceFile.hpp ├── DiceGUI.cpp ├── DiceGUI.h ├── DiceL5R.cpp ├── DiceL5R.h ├── DiceLogo.bmp ├── DiceMod.cpp ├── DiceMod.h ├── DiceMsgSend.cpp ├── DiceMsgSend.h ├── DiceNetwork.cpp ├── DiceNetwork.h ├── DiceSession.cpp ├── DiceSession.h ├── DiceUpdate.cpp ├── DiceXMLTree.h ├── EncodingConvert.cpp ├── EncodingConvert.h ├── GetRule.cpp ├── GetRule.h ├── GlobalVar.cpp ├── GlobalVar.h ├── Jsonio.cpp ├── Jsonio.h ├── ManagerSystem.cpp ├── ManagerSystem.h ├── MsgFormat.cpp ├── MsgFormat.h ├── MsgMonitor.cpp ├── MsgMonitor.h ├── RD.cpp ├── RD.h ├── RDConstant.h ├── RandomGenerator.cpp ├── RandomGenerator.h ├── Resource.aps ├── Resource.rc ├── STLExtern.hpp ├── StorageBase.cpp ├── StorageBase.h ├── StrExtern.hpp ├── app.json ├── dllmain.cpp ├── json.hpp ├── resource.h └── strExtern.cpp ├── LICENSE ├── README.md └── appveyor.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.cpp -text crlf diff 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CQSDK/CQAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQAPI.h -------------------------------------------------------------------------------- /CQSDK/CQAPI_EX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQAPI_EX.h -------------------------------------------------------------------------------- /CQSDK/CQEVE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE.h -------------------------------------------------------------------------------- /CQSDK/CQEVEBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVEBasic.h -------------------------------------------------------------------------------- /CQSDK/CQEVEMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVEMsg.h -------------------------------------------------------------------------------- /CQSDK/CQEVERequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVERequest.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_ALL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_ALL.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_DiscussMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_DiscussMsg.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_FriendAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_FriendAdd.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_GroupMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_GroupMsg.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_PrivateMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_PrivateMsg.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_RequestAddFriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_RequestAddFriend.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_RequestAddGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_RequestAddGroup.h -------------------------------------------------------------------------------- /CQSDK/CQEVE_Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQEVE_Status.h -------------------------------------------------------------------------------- /CQSDK/CQLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQLogger.h -------------------------------------------------------------------------------- /CQSDK/CQMsgCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQMsgCode.h -------------------------------------------------------------------------------- /CQSDK/CQMsgSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQMsgSend.h -------------------------------------------------------------------------------- /CQSDK/CQTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQTools.h -------------------------------------------------------------------------------- /CQSDK/CQconstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQconstant.h -------------------------------------------------------------------------------- /CQSDK/CQface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/CQface.h -------------------------------------------------------------------------------- /CQSDK/Unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/Unpack.h -------------------------------------------------------------------------------- /CQSDK/bufstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/bufstream.h -------------------------------------------------------------------------------- /CQSDK/cqdefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDK/cqdefine.h -------------------------------------------------------------------------------- /CQSDKCPP/CQAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/CQAPI.cpp -------------------------------------------------------------------------------- /CQSDKCPP/CQAPI_EX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/CQAPI_EX.cpp -------------------------------------------------------------------------------- /CQSDKCPP/CQEVE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/CQEVE.cpp -------------------------------------------------------------------------------- /CQSDKCPP/CQTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/CQTools.cpp -------------------------------------------------------------------------------- /CQSDKCPP/CQstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/CQstream.cpp -------------------------------------------------------------------------------- /CQSDKCPP/Unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/CQSDKCPP/Unpack.cpp -------------------------------------------------------------------------------- /Dice.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice.cppcheck -------------------------------------------------------------------------------- /Dice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice.sln -------------------------------------------------------------------------------- /Dice.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice.sln.DotSettings -------------------------------------------------------------------------------- /Dice.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice.sln.DotSettings.user -------------------------------------------------------------------------------- /Dice/APPINFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/APPINFO.h -------------------------------------------------------------------------------- /Dice/BlackListManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/BlackListManager.cpp -------------------------------------------------------------------------------- /Dice/BlackListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/BlackListManager.h -------------------------------------------------------------------------------- /Dice/CQP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CQP.lib -------------------------------------------------------------------------------- /Dice/CardDeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CardDeck.cpp -------------------------------------------------------------------------------- /Dice/CardDeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CardDeck.h -------------------------------------------------------------------------------- /Dice/CharacterCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CharacterCard.cpp -------------------------------------------------------------------------------- /Dice/CharacterCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CharacterCard.h -------------------------------------------------------------------------------- /Dice/CustomMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CustomMsg.cpp -------------------------------------------------------------------------------- /Dice/CustomMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/CustomMsg.h -------------------------------------------------------------------------------- /Dice/Dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.cpp -------------------------------------------------------------------------------- /Dice/Dice.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.ico -------------------------------------------------------------------------------- /Dice/Dice.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.vcxproj -------------------------------------------------------------------------------- /Dice/Dice.vcxproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.vcxproj.DotSettings -------------------------------------------------------------------------------- /Dice/Dice.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.vcxproj.filters -------------------------------------------------------------------------------- /Dice/Dice.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Dice.vcxproj.user -------------------------------------------------------------------------------- /Dice/DiceCloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceCloud.cpp -------------------------------------------------------------------------------- /Dice/DiceCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceCloud.h -------------------------------------------------------------------------------- /Dice/DiceConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceConsole.cpp -------------------------------------------------------------------------------- /Dice/DiceConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceConsole.h -------------------------------------------------------------------------------- /Dice/DiceEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceEvent.cpp -------------------------------------------------------------------------------- /Dice/DiceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceEvent.h -------------------------------------------------------------------------------- /Dice/DiceFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceFile.cpp -------------------------------------------------------------------------------- /Dice/DiceFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceFile.hpp -------------------------------------------------------------------------------- /Dice/DiceGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceGUI.cpp -------------------------------------------------------------------------------- /Dice/DiceGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceGUI.h -------------------------------------------------------------------------------- /Dice/DiceL5R.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceL5R.cpp -------------------------------------------------------------------------------- /Dice/DiceL5R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceL5R.h -------------------------------------------------------------------------------- /Dice/DiceLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceLogo.bmp -------------------------------------------------------------------------------- /Dice/DiceMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceMod.cpp -------------------------------------------------------------------------------- /Dice/DiceMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceMod.h -------------------------------------------------------------------------------- /Dice/DiceMsgSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceMsgSend.cpp -------------------------------------------------------------------------------- /Dice/DiceMsgSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceMsgSend.h -------------------------------------------------------------------------------- /Dice/DiceNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceNetwork.cpp -------------------------------------------------------------------------------- /Dice/DiceNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceNetwork.h -------------------------------------------------------------------------------- /Dice/DiceSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceSession.cpp -------------------------------------------------------------------------------- /Dice/DiceSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceSession.h -------------------------------------------------------------------------------- /Dice/DiceUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceUpdate.cpp -------------------------------------------------------------------------------- /Dice/DiceXMLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/DiceXMLTree.h -------------------------------------------------------------------------------- /Dice/EncodingConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/EncodingConvert.cpp -------------------------------------------------------------------------------- /Dice/EncodingConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/EncodingConvert.h -------------------------------------------------------------------------------- /Dice/GetRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/GetRule.cpp -------------------------------------------------------------------------------- /Dice/GetRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/GetRule.h -------------------------------------------------------------------------------- /Dice/GlobalVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/GlobalVar.cpp -------------------------------------------------------------------------------- /Dice/GlobalVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/GlobalVar.h -------------------------------------------------------------------------------- /Dice/Jsonio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Jsonio.cpp -------------------------------------------------------------------------------- /Dice/Jsonio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Jsonio.h -------------------------------------------------------------------------------- /Dice/ManagerSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/ManagerSystem.cpp -------------------------------------------------------------------------------- /Dice/ManagerSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/ManagerSystem.h -------------------------------------------------------------------------------- /Dice/MsgFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/MsgFormat.cpp -------------------------------------------------------------------------------- /Dice/MsgFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/MsgFormat.h -------------------------------------------------------------------------------- /Dice/MsgMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/MsgMonitor.cpp -------------------------------------------------------------------------------- /Dice/MsgMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/MsgMonitor.h -------------------------------------------------------------------------------- /Dice/RD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/RD.cpp -------------------------------------------------------------------------------- /Dice/RD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/RD.h -------------------------------------------------------------------------------- /Dice/RDConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/RDConstant.h -------------------------------------------------------------------------------- /Dice/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/RandomGenerator.cpp -------------------------------------------------------------------------------- /Dice/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/RandomGenerator.h -------------------------------------------------------------------------------- /Dice/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Resource.aps -------------------------------------------------------------------------------- /Dice/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/Resource.rc -------------------------------------------------------------------------------- /Dice/STLExtern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/STLExtern.hpp -------------------------------------------------------------------------------- /Dice/StorageBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/StorageBase.cpp -------------------------------------------------------------------------------- /Dice/StorageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/StorageBase.h -------------------------------------------------------------------------------- /Dice/StrExtern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/StrExtern.hpp -------------------------------------------------------------------------------- /Dice/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/app.json -------------------------------------------------------------------------------- /Dice/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/dllmain.cpp -------------------------------------------------------------------------------- /Dice/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/json.hpp -------------------------------------------------------------------------------- /Dice/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/resource.h -------------------------------------------------------------------------------- /Dice/strExtern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/Dice/strExtern.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mystringEmpty/Dice/HEAD/appveyor.yml --------------------------------------------------------------------------------