about summary refs log tree commit diff stats
path: root/data/maps/the_three_doors/rooms
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-12 14:31:08 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-12 14:31:08 -0400
commit4a5dff2618ef1071f0477f529b7cec22a3dbd340 (patch)
treefb051d07844d35d5ffd090eaacdd254ee768630f /data/maps/the_three_doors/rooms
parent7a0ea73b99d767badea8f7a4c07011af7fcfe8df (diff)
downloadlingo2-archipelago-4a5dff2618ef1071f0477f529b7cec22a3dbd340.tar.gz
lingo2-archipelago-4a5dff2618ef1071f0477f529b7cec22a3dbd340.tar.bz2
lingo2-archipelago-4a5dff2618ef1071f0477f529b7cec22a3dbd340.zip
Updated README
Diffstat (limited to 'data/maps/the_three_doors/rooms')
0 files changed, 0 insertions, 0 deletions
#22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#include "runtime.h"

std::string Runtime::getResourcePath(std::string_view name) {
#ifdef MSVC
  return std::string("res/") + std::string(name);
#else
  return std::string("../res/") + std::string(name);
#endif
}