Successful conversation, VScode tooling, drama document, loading anim when thinking
parent
2d31ec5b6e
commit
3081391c62
@ -0,0 +1,23 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE",
|
||||
"DEVTOOLS",
|
||||
"WINDOWS",
|
||||
],
|
||||
"windowsSdkVersion": "10.0.22621.0",
|
||||
"compilerPath": "cl.exe",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "windows-msvc-x64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
Binary file not shown.
@ -1,2 +1,5 @@
|
||||
[
|
||||
{can_hear: [NPC_WellDweller, NPC_Farmer]}
|
||||
{enum: NPC_WellDweller, dialog: "What a fearful farm you live in, come down to the well, the grass is damper down here.", to: Farmer, mood: Scared, thoughts: "Nobody can take me from my well" }
|
||||
{enum: NPC_Farmer, dialog: "Sure as shit I won't!", to: Farmer, mood: Scared, thoughts: "What a greasy looking feller" }
|
||||
]
|
||||
|
Binary file not shown.
@ -0,0 +1,23 @@
|
||||
#NoEnv
|
||||
#SingleInstance, Force
|
||||
SendMode, Input
|
||||
SetBatchLines, -1
|
||||
SetWorkingDir, %A_ScriptDir%
|
||||
|
||||
; Fuck windows for having this hardcoded
|
||||
^Esc::return
|
||||
|
||||
^5::
|
||||
IfWinNotExist, rpgptbuild
|
||||
{
|
||||
run, wt.exe cmd /K "title rpgptbuild && cd C:\Users\Cameron\Documents\rpgpt && vcvars"
|
||||
}
|
||||
WinActivate, rpgptbuild
|
||||
If WinActive("rpgptbuild")
|
||||
{
|
||||
Send, {Enter}
|
||||
Send, run_remedy build_desktop_debug.bat codegen
|
||||
Send, {Enter}
|
||||
}
|
||||
Send, {Blind} ; So it doesn't hold down ctrl after running! WTF
|
||||
return
|
Loading…
Reference in New Issue