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
// Unit Stats | |
// | |
// V1.51 updated | |
// | |
// The !NonCombat column is now called the Unit Function column which is a new unit function value that can be used to determine | |
// a unit's function. Here are valid values (note that they can be combined by adding them): | |
// 0 = unit participates in combat | |
// 1 = unit does NOT participate in combat | |
// 2 = Has the Assassiniation Ability (like a Spy) | |
// 4 = Can Attack on B2 (Like a Spy, Submarine, or Stealth Ship) |
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
using System; | |
namespace Abp.AppFactory | |
{ | |
public class AbpEntityNotFoundException : Exception | |
{ | |
private string field; | |
private string value; | |
private string entityType; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Shader "Custom/WavyOcean" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "white" {} | |
} | |
SubShader | |
{ | |
Tags { "RenderType" = "Opaque" } | |
LOD 100 |