X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fminigames%2Fminigames.qh;h=de0baf6b388e4eba2d49dc718f5a2f7eb340ca1c;hb=2fb97376511702d8eb3c75a77f46162ef945dead;hp=86fb778dcbc6f116da25b2610a66de9d82aa625d;hpb=7bae88d09fbd53cce732e31633aea92671b43699;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/minigames/minigames.qh b/qcsrc/common/minigames/minigames.qh index 86fb778dc..de0baf6b3 100644 --- a/qcsrc/common/minigames/minigames.qh +++ b/qcsrc/common/minigames/minigames.qh @@ -1,7 +1,4 @@ -#ifndef MINIGAMES_H -#define MINIGAMES_H - -entity minigame_descriptors; +#pragma once // previous node in a doubly linked list .entity list_prev; @@ -15,7 +12,7 @@ int minigame_tile_letter(string id); // Get number index of a tile name // Note: this is 0 based, useful for mathematical operations -// Note: Since the tile notation starts from the bottom left, +// Note: Since the tile notation starts from the bottom left, // you may want to do number_of_rows - what_this_function_returns or something int minigame_tile_number(string id); @@ -88,7 +85,7 @@ int minigame_count_players(entity minigame); /// IMPORTANT: always read in client everything you send from the server! /// cmd(entity minigame_player, int argc, string command) /// self = client entity triggering this -/// argv(n) = console token +/// argv(n) = console token /// argc: number of console tokens /// command: full command string /// triggered when a player does "cmd minigame ..." with some unrecognized command @@ -117,11 +114,9 @@ const int MINIG_SF_ALL = 0xff; // use to resend everything // Spawn linked entity on the server or local entity on the client // This entity will be removed automatically when the minigame ends -entity msle_spawn(entity minigame_session, string class_name); +entity msle_spawn(entity minigame_session, entity e); #include "minigame/all.qh" int msle_id(string class_name); string msle_classname(int id); - -#endif