contract stuff. Still aways a way I just wanted to get it in github.

This commit is contained in:
jed
2012-09-05 16:54:14 -07:00
parent a61b5e98fe
commit 8e5374b338
8 changed files with 619 additions and 6 deletions

35
src/Contract.cpp Normal file
View File

@@ -0,0 +1,35 @@
#include "Contract.h"
#include "Interpreter.h"
using namespace Script;
/*
JED: V III
*/
Contract::Contract()
{
}
void Contract::executeCreate()
{
}
void Contract::executeRemove()
{
}
void Contract::executeFund()
{
}
void Contract::executeAccept()
{
//std::vector<char> code;
//Interpreter interpreter;
//interpreter.interpret(this,code);
}