Decision Engine section

This commit is contained in:
Anthony Leland 2020-10-30 05:23:31 -04:00
parent 2993056967
commit 31024f9fc5
8 changed files with 76 additions and 25 deletions

View file

@ -7,8 +7,8 @@ namespace Servo.MotiveEngine
const int NAX_MOOD = 600;
const int MAX_MOTIVE = 100;
public Motives(int hunger, int bladder, int fun, int energy,
int environment, int social)
public Motives(int hunger, int bladder, int fun,
int energy, int environment, int social)
{
Hunger = hunger;
Bladder = bladder;

View file

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30621.155
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Servo.MotiveEngine", "Servo.MotiveEngine\Servo.MotiveEngine.csproj", "{162D701B-5CBA-43A4-A763-F4906B287BE3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Servo.MotiveEngine", "Servo.MotiveEngine\Servo.MotiveEngine.csproj", "{162D701B-5CBA-43A4-A763-F4906B287BE3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3B512BB9-9354-49A4-AE68-97531B21EBD5}"
ProjectSection(SolutionItems) = preProject
@ -11,6 +11,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\README.md = ..\README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Servo", "Servo\Servo.csproj", "{6317836E-F520-4FEA-906E-2877CB5ED0AA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -33,6 +35,18 @@ Global
{162D701B-5CBA-43A4-A763-F4906B287BE3}.Release|x64.Build.0 = Release|Any CPU
{162D701B-5CBA-43A4-A763-F4906B287BE3}.Release|x86.ActiveCfg = Release|Any CPU
{162D701B-5CBA-43A4-A763-F4906B287BE3}.Release|x86.Build.0 = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|x64.ActiveCfg = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|x64.Build.0 = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|x86.ActiveCfg = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Debug|x86.Build.0 = Debug|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|Any CPU.Build.0 = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|x64.ActiveCfg = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|x64.Build.0 = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|x86.ActiveCfg = Release|Any CPU
{6317836E-F520-4FEA-906E-2877CB5ED0AA}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

12
source/Servo/Program.cs Normal file
View file

@ -0,0 +1,12 @@
using System;
namespace Servo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>