This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 8f0b67ad3fda93e0cb7c2d29a3b4eaa405146aca Mon Sep 17 00:00:00 2001 | |
From: Emiliyan Kurtseliyanski <[email protected]> | |
Date: Fri, 13 Mar 2015 17:50:38 +0200 | |
Subject: [PATCH] Properly implement the Arena Spectator | |
--- | |
sql/custom/spectator.sql | 13 + | |
src/server/game/Accounts/RBAC.h | 6 + | |
src/server/game/Battlegrounds/Battleground.cpp | 24 +- | |
src/server/game/Battlegrounds/Battleground.h | 10 + |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package mn.digz.lwjgl; | |
import static org.lwjgl.glfw.GLFW.*; | |
import static org.lwjgl.opengl.GL11.*; | |
import static org.lwjgl.opengl.GL15.*; | |
import static org.lwjgl.opengl.GL20.*; | |
import static org.lwjgl.system.MemoryUtil.NULL; | |
import java.io.IOException; | |
import java.nio.DoubleBuffer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final String VERIFY_URL = "http://m.egolomt.mn:7070/persistence.asmx"; | |
final String USERNAME = "bla"; | |
final String PASSWORD = "bla"; | |
try { | |
// Create SOAP Connection | |
SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance(); | |
SOAPConnection soapConnection = soapConnectionFactory.createConnection(); | |
// Set SOAP message body params |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package mn.astvision.smartcar.iib.client; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import jakarta.annotation.PostConstruct; | |
import lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import mn.astvision.smartcar.iib.request.calculate.IIBInsuranceCalculateRequest; | |
import mn.astvision.smartcar.iib.response.calculate.IIBInsuranceCalculateData; | |
import mn.astvision.smartcar.iib.response.calculate.driver.IIBDriverInsuranceCalculateResponse; |